diff --git a/lamp-xenial64-fpm/Vagrantfile b/lamp-xenial64-fpm/Vagrantfile
new file mode 100644
index 0000000..3aaed93
--- /dev/null
+++ b/lamp-xenial64-fpm/Vagrantfile
@@ -0,0 +1,80 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+# All Vagrant configuration is done below. The "2" in Vagrant.configure
+# configures the configuration version (we support older styles for
+# backwards compatibility). Please don't change it unless you know what
+# you're doing.
+Vagrant.configure(2) do |config|
+ # The most common configuration options are documented and commented below.
+ # For a complete reference, please see the online documentation at
+ # https://docs.vagrantup.com.
+
+ # Every Vagrant development environment requires a box. You can search for
+ # boxes at https://atlas.hashicorp.com/search.
+ config.vm.box = "ubuntu/xenial64"
+
+ # Disable automatic box update checking. If you disable this, then
+ # boxes will only be checked for updates when the user runs
+ # `vagrant box outdated`. This is not recommended.
+ # config.vm.box_check_update = false
+
+ # Create a forwarded port mapping which allows access to a specific port
+ # within the machine from a port on the host machine. In the example below,
+ # accessing "localhost:8080" will access port 80 on the guest machine.
+ # config.vm.network "forwarded_port", guest: 80, host: 8080
+
+ # Create a private network, which allows host-only access to the machine
+ # using a specific IP.
+ config.vm.network "private_network", ip: "192.168.33.10", netmask: "255.255.255.0"
+
+ # Create a public network, which generally matched to bridged network.
+ # Bridged networks make the machine appear as another physical device on
+ # your network.
+ # config.vm.network "public_network"
+
+ # Share an additional folder to the guest VM. The first argument is
+ # the path on the host to the actual folder. The second argument is
+ # the path on the guest to mount the folder. And the optional third
+ # argument is a set of non-required options.
+ # config.vm.synced_folder "../data", "/vagrant_data"
+ config.vm.synced_folder "../../", "/home/vhosts", owner: "www-data", group: "www-data"
+
+ # Provider-specific configuration so you can fine-tune various
+ # backing providers for Vagrant. These expose provider-specific options.
+ # Example for VirtualBox:
+ #
+ # config.vm.provider "virtualbox" do |vb|
+ # # Display the VirtualBox GUI when booting the machine
+ # vb.gui = true
+ #
+ # # Customize the amount of memory on the VM:
+ # vb.memory = "1024"
+ # end
+ #
+ # View the documentation for the provider you are using for more
+ # information on available options.
+
+ # Define a Vagrant Push strategy for pushing to Atlas. Other push strategies
+ # such as FTP and Heroku are also available. See the documentation at
+ # https://docs.vagrantup.com/v2/push/atlas.html for more information.
+ # config.push.define "atlas" do |push|
+ # push.app = "YOUR_ATLAS_USERNAME/YOUR_APPLICATION_NAME"
+ # end
+
+ # Enable provisioning with a shell script. Additional provisioners such as
+ # Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
+ # documentation for more information about their specific syntax and use.
+ # config.vm.provision "shell", inline: <<-SHELL
+ # sudo apt-get update
+ # sudo apt-get install -y apache2
+ # SHELL
+
+ config.vm.provider "virtualbox" do |vb|
+ vb.customize ["modifyvm", :id, "--memory", "1024"]
+ vb.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
+ vb.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
+ end
+
+ config.vm.provision :shell, :path => "./bootstrap.sh"
+end
diff --git a/lamp-xenial64-fpm/bootstrap.sh b/lamp-xenial64-fpm/bootstrap.sh
new file mode 100644
index 0000000..6455d3a
--- /dev/null
+++ b/lamp-xenial64-fpm/bootstrap.sh
@@ -0,0 +1,185 @@
+#!/usr/bin/env bash
+
+VARGANTDEV=1
+DIR=/vagrant
+DIRDATA=$DIR/data
+MYSQL_PASS=scores
+MARIADB_VERSION="10.1"
+PHPMYADMIN_VERSION="4.6.1"
+
+# --- Add a file action.upgrade to perfom a system upgrade
+if [ -f $DIR/action.upgrade ]
+then
+ sudo apt-get update
+ sudo apt-get -y upgrade
+ sudo rm -rf $DIR/action.upgrade
+fi
+
+# --- Installation Wkhtmltopdf
+if [ ! -f /usr/local/bin/wkhtmltopdf ]
+then
+
+ sudo dpkg -i $DIRDATA/Apps/wkhtmltox-0.12.2.1_linux-trusty-amd64.deb
+ sudo apt-get -f install -y
+fi
+
+# --- Database
+if [ $VARGANTDEV -eq 1 ]
+then
+ # --- Installation MariaDB
+ if [ ! -f /etc/mysql/vagrant ]
+ then
+ sudo apt-get install software-properties-common
+ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
+ sudo add-apt-repository 'deb [arch=amd64,i386] http://ftp.igh.cnrs.fr/pub/mariadb/repo/10.1/ubuntu xenial main'
+ sudo apt-get update
+ sudo debconf-set-selections <<< "mariadb-server-$MARIADB_VERSION mysql-server/root_password password $MYSQL_PASS"
+ sudo debconf-set-selections <<< "mariadb-server-$MARIADB_VERSION mysql-server/root_password_again password $MYSQL_PASS"
+ sudo apt-get -y install mariadb-server mariadb-client
+ sudo sed -i -e 's/bind-address[ \t]*= 127.0.0.1/bind-address = 0.0.0.0/g' /etc/mysql/my.cnf
+ sudo sed -i -e 's/max_connections[ \t]*= 100/max_connections = 20/g' /etc/mysql/my.cnf
+ sudo service mysql restart
+ sudo touch /etc/mysql/vagrant
+ fi
+else
+ # --- Installation MySQL Server
+ if [ ! -f /etc/mysql/vagrant ]
+ then
+ sudo debconf-set-selections <<< "mysql-server mysql-server/root_password password $MYSQL_PASS"
+ sudo debconf-set-selections <<< "mysql-server mysql-server/root_password_again password $MYSQL_PASS"
+ sudo apt-get -y install mysql-server mysql-client
+ sudo sed -i -e 's/bind-address[ \t]*= 127.0.0.1/bind-address = 0.0.0.0/g' /etc/mysql/my.cnf
+ sudo sed -i -e 's/max_connections[ \t]*= 100/max_connections = 20/g' /etc/mysql/my.cnf
+ sudo service mysql restart
+ sudo touch /etc/mysql/vagrant
+ fi
+fi
+
+# --- PHP
+if [ ! -f /usr/bin/php5 ]
+then
+
+ sudo apt-get update
+ sudo apt-get -y install htop unzip apache2 libapache2-mod-fastcgi php5-fpm php5-cli php5-apcu php5-curl php5-xmlrpc php5-xsl php5-mysqlnd
+ if [ $VARGANTDEV -eq 1 ]
+ then
+ sudo apt-get -y install php5-xdebug
+ fi
+ sudo a2enmod autoindex deflate expires headers rewrite actions
+ sudo cp -f $DIRDATA/Apache/fastcgi.conf /etc/apache2/mods-available/fastcgi.conf
+
+ # --- Configuration PHP / CLI
+ if [ -f /etc/php5/cli/php.ini ]
+ then
+ sudo sed -i -e 's/short_open_tag = Off/short_open_tag = On/g' /etc/php5/cli/php.ini
+ sudo sed -i -e 's/;mbstring.internal_encoding = UTF-8/mbstring.internal_encoding = UTF-8/g' /etc/php5/cli/php.ini
+ sudo sed -i -e 's/;date.timezone =/date.timezone = Europe\/Paris/g' /etc/php5/cli/php.ini
+ fi
+
+ # --- Configuration PHP FPM
+ if [ -f /etc/php5/fpm/php.ini ]
+ then
+ sudo sed -i -e 's/max_execution_time = 30/max_execution_time = 300/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/short_open_tag = Off/short_open_tag = On/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/;mbstring.internal_encoding = UTF-8/mbstring.internal_encoding = UTF-8/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/;date.timezone =/date.timezone = Europe\/Paris/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/post_max_size = 8M/post_max_size = 50M/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/upload_max_filesize = 2M/upload_max_filesize = 50M/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/session.gc_maxlifetime = 1440/session.gc_maxlifetime = 86400/g' /etc/php5/fpm/php.ini
+ sudo sed -i -e 's/;opcache.enable=0/opcache.enable=1/g' /etc/php5/fpm/php.ini
+ sudo cp -f $DIRDATA/PHP/xdebug.ini /etc/php5/mods-available/xdebug.ini
+
+ # --- Browscap
+ sudo cp -f $DIRDATA/PHP/php_browscap.ini /etc/php5/fpm/
+ sudo sed -i -e 's/;browscap = extra\/browscap.ini/browscap = \/etc\/php5\/fpm\/php_browscap.ini/g' /etc/php5/fpm/php.ini
+ fi
+
+ # --- ChartDirector
+ if [ ! -f /usr/lib/php5/20121212/chartdir.lic ]
+ then
+ sudo cp -R $DIRDATA/ChartDirector/lib/fonts /usr/lib/php5/20121212/
+ sudo cp $DIRDATA/ChartDirector/lib/libchartdir.so /usr/lib/php5/20121212/
+ sudo cp $DIRDATA/ChartDirector/lib/phpchartdir550.dll /usr/lib/php5/20121212/
+ sudo cp $DIRDATA/ChartDirector/chartdir.lic /usr/lib/php5/20121212/
+ sudo cp $DIRDATA/ChartDirector/chartdir.ini /etc/php5/mods-available/
+ sudo php5enmod chartdir
+ fi
+
+fi
+
+# --- Composer
+if [ ! -f /usr/local/bin/composer ]
+then
+ curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/local/bin --filename=composer
+fi
+
+# --- Installation phpMyAdmin
+PHPMYADMIN_DIR="phpMyAdmin-$PHPMYADMIN_VERSION-all-languages"
+PHPMYADMIN_URL="https://files.phpmyadmin.net/phpMyAdmin"
+if [ ! -d "/home/vhosts/$PHPMYADMIN_DIR" ]
+then
+ wget -q "$PHPMYADMIN_URL/$PHPMYADMIN_VERSION/$PHPMYADMIN_DIR.tar.xz" -O "/home/vagrant/$PHPMYADMIN_DIR.tar.xz"
+ if [ -f "/home/vagrant/$PHPMYADMIN_DIR.tar.xz" ]
+ then
+ tar xJvf "/home/vagrant/$PHPMYADMIN_DIR.tar.xz" --directory /home/vhosts/
+ mysql -hlocalhost -uroot -p$MYSQL_PASS < /home/vhosts/$PHPMYADMIN_DIR/sql/create_tables.sql
+ mysql -hlocalhost -uroot -p$MYSQL_PASS < $DIRDATA/Apps/phpmyadmin.sql
+ sudo service mysql restart
+ cp $DIRDATA/Apps/config.inc.php /home/vhosts/$PHPMYADMIN_DIR/
+ chmod 0444 /home/vhosts/$PHPMYADMIN_DIR/config.inc.php
+ fi
+fi
+
+# --- Configuration Apache
+if [ ! -f /etc/apache2/conf-available/httpd.conf ]
+then
+ sudo echo "ServerName 127.0.0.1" > /etc/apache2/conf-available/httpd.conf
+ sudo a2enconf httpd
+fi
+
+# --- Disable all website
+cd /etc/apache2/sites-available/
+for f in *.conf; do
+ if [ $f = "000-default.conf" ]; then
+ continue
+ fi
+ if [ $f = "default-ssl.conf" ]; then
+ continue
+ fi
+ sudo a2dissite $f;
+ sudo rm -vf /etc/apache2/sites-available/$f;
+done;
+
+# --- phpmyadmin.sd.dev
+cp -f $DIRDATA/Apache/phpmyadmin.conf $DIR/vhosts/phpmyadmin.conf
+sed -i -e "s/VERSION/$PHPMYADMIN_VERSION/" $DIR/vhosts/phpmyadmin.conf
+
+# --- test.sd.dev
+cp -f $DIRDATA/Apache/test.conf $DIR/vhosts/test.conf
+if [ ! -d /home/vhosts/test ]
+then
+ sudo mkdir /home/vhosts/test
+fi
+
+# --- Copy Vhosts files
+VHOSTS='000-default.conf'
+cd $DIR/vhosts/
+for f in *.conf; do
+ if [ $f = "000-default.conf" ]; then
+ continue
+ fi
+ if [ $f = "default-ssl.conf" ]; then
+ continue
+ fi
+ if [ -f $f ]
+ then
+ sudo cp -vf $f /etc/apache2/sites-available/;
+ VHOSTS+=" $f"
+ fi
+done;
+
+sudo a2ensite $VHOSTS
+
+# --- Restart apache
+sudo service apache2 restart
+
diff --git a/lamp-xenial64-fpm/data/Apache/fastcgi.conf b/lamp-xenial64-fpm/data/Apache/fastcgi.conf
new file mode 100644
index 0000000..cc5c4a6
--- /dev/null
+++ b/lamp-xenial64-fpm/data/Apache/fastcgi.conf
@@ -0,0 +1,9 @@
+
+ AddType application/x-httpd-fastphp5 .php
+ Action application/x-httpd-fastphp5 /php5-fcgi
+ Alias /php5-fcgi /usr/lib/cgi-bin/php5-fcgi
+ FastCgiExternalServer /usr/lib/cgi-bin/php5-fcgi -socket /var/run/php5-fpm.sock -pass-header Authorization -idle-timeout 310
+
+ Require all granted
+
+
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/Apache/phpmyadmin.conf b/lamp-xenial64-fpm/data/Apache/phpmyadmin.conf
new file mode 100644
index 0000000..babcab4
--- /dev/null
+++ b/lamp-xenial64-fpm/data/Apache/phpmyadmin.conf
@@ -0,0 +1,18 @@
+
+ ServerName phpmyadmin.sd.dev
+ UseCanonicalName On
+ UseCanonicalPhysicalPort On
+ DocumentRoot /home/vhosts/phpMyAdmin-VERSION-all-languages
+
+ EnableSendfile Off
+ AllowOverride all
+ Require all granted
+
+ # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
+ # error, crit, alert, emerg.
+ # It is also possible to configure the loglevel for particular
+ # modules, e.g.
+ LogLevel error
+ ErrorLog ${APACHE_LOG_DIR}/phpmyadmin-error.log
+ CustomLog ${APACHE_LOG_DIR}/phpmyadmin-access.log combined
+
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/Apache/test.conf b/lamp-xenial64-fpm/data/Apache/test.conf
new file mode 100644
index 0000000..8ace10c
--- /dev/null
+++ b/lamp-xenial64-fpm/data/Apache/test.conf
@@ -0,0 +1,20 @@
+
+ ServerName test.sd.dev
+ UseCanonicalName On
+ UseCanonicalPhysicalPort On
+ DocumentRoot /home/vhosts/test
+
+ # EnableSendFile is disable for performance reason under vagrant
+ EnableSendfile Off
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride all
+ Require all granted
+
+ # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
+ # error, crit, alert, emerg.
+ # It is also possible to configure the loglevel for particular
+ # modules, e.g.
+ LogLevel error
+ ErrorLog ${APACHE_LOG_DIR}/test-error.log
+ CustomLog ${APACHE_LOG_DIR}/test-access.log combined
+
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/Apps/config.inc.php b/lamp-xenial64-fpm/data/Apps/config.inc.php
new file mode 100644
index 0000000..6335694
--- /dev/null
+++ b/lamp-xenial64-fpm/data/Apps/config.inc.php
@@ -0,0 +1,55 @@
+
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/Apps/phpmyadmin.sql b/lamp-xenial64-fpm/data/Apps/phpmyadmin.sql
new file mode 100644
index 0000000..0821079
--- /dev/null
+++ b/lamp-xenial64-fpm/data/Apps/phpmyadmin.sql
@@ -0,0 +1 @@
+GRANT SELECT, INSERT, DELETE, UPDATE, ALTER ON phpmyadmin.* TO 'pma'@'%' IDENTIFIED BY 'pmapass';
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/ChartDirector/chartdir.ini b/lamp-xenial64-fpm/data/ChartDirector/chartdir.ini
new file mode 100644
index 0000000..5bb1295
--- /dev/null
+++ b/lamp-xenial64-fpm/data/ChartDirector/chartdir.ini
@@ -0,0 +1 @@
+extension=phpchartdir550.dll
\ No newline at end of file
diff --git a/lamp-xenial64-fpm/data/ChartDirector/chartdir.lic b/lamp-xenial64-fpm/data/ChartDirector/chartdir.lic
new file mode 100644
index 0000000..c472b1e
--- /dev/null
+++ b/lamp-xenial64-fpm/data/ChartDirector/chartdir.lic
@@ -0,0 +1 @@
+DEVP-2AGF-AAFD-GAEY-BF6F-829C
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB.pfc
new file mode 100644
index 0000000..2b76afa
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB08.pcf
new file mode 100644
index 0000000..40e8156
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvB08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI.pfc
new file mode 100644
index 0000000..ffb77de
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI08.pcf
new file mode 100644
index 0000000..b7bbbe9
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvBI08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI.pfc
new file mode 100644
index 0000000..666710f
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI08.pcf
new file mode 100644
index 0000000..3cf7829
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI10.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI10.pcf
new file mode 100644
index 0000000..6ccb1a6
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI10.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI12.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI12.pcf
new file mode 100644
index 0000000..92cde00
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI12.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI14.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI14.pcf
new file mode 100644
index 0000000..8df233e
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvI14.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR.pfc
new file mode 100644
index 0000000..76fd57f
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR08.pcf
new file mode 100644
index 0000000..611e57d
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR10.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR10.pcf
new file mode 100644
index 0000000..a245fae
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR10.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR12.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR12.pcf
new file mode 100644
index 0000000..4579ae7
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR12.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR14.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR14.pcf
new file mode 100644
index 0000000..e57d71a
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/helvR14.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/script.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/script.pfc
new file mode 100644
index 0000000..a190d94
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/script.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB.pfc
new file mode 100644
index 0000000..ae7667f
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB08.pcf
new file mode 100644
index 0000000..ebd9b3c
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timB08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI.pfc
new file mode 100644
index 0000000..d33c105
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI08.pcf
new file mode 100644
index 0000000..b5cac49
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timBI08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI.pfc
new file mode 100644
index 0000000..c8304fe
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI08.pcf
new file mode 100644
index 0000000..9247cd4
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI10.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI10.pcf
new file mode 100644
index 0000000..70cb962
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI10.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI12.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI12.pcf
new file mode 100644
index 0000000..ded7b9f
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI12.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI14.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI14.pcf
new file mode 100644
index 0000000..ce42cde
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timI14.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR.pfc b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR.pfc
new file mode 100644
index 0000000..646f2ea
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR.pfc differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR08.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR08.pcf
new file mode 100644
index 0000000..d86708f
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR08.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR10.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR10.pcf
new file mode 100644
index 0000000..510811a
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR10.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR12.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR12.pcf
new file mode 100644
index 0000000..7f0b76c
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR12.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR14.pcf b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR14.pcf
new file mode 100644
index 0000000..285b264
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/fonts/timR14.pcf differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/libchartdir.so b/lamp-xenial64-fpm/data/ChartDirector/lib/libchartdir.so
new file mode 100644
index 0000000..1683eeb
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/libchartdir.so differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530.dll
new file mode 100644
index 0000000..7790561
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530.dll differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530mt.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530mt.dll
new file mode 100644
index 0000000..d141842
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir530mt.dll differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550.dll
new file mode 100644
index 0000000..b793096
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550.dll differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550mt.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550mt.dll
new file mode 100644
index 0000000..c8069e7
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir550mt.dll differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560.dll
new file mode 100644
index 0000000..a05f53e
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560.dll differ
diff --git a/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560mt.dll b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560mt.dll
new file mode 100644
index 0000000..e330410
Binary files /dev/null and b/lamp-xenial64-fpm/data/ChartDirector/lib/phpchartdir560mt.dll differ
diff --git a/lamp-xenial64-fpm/data/PHP/php_browscap.ini b/lamp-xenial64-fpm/data/PHP/php_browscap.ini
new file mode 100644
index 0000000..2e48302
--- /dev/null
+++ b/lamp-xenial64-fpm/data/PHP/php_browscap.ini
@@ -0,0 +1,498569 @@
+;;; Provided courtesy of http://browscap.org/
+;;; Created on Friday, January 9, 2015 at 01:36 PM UTC
+;;; Keep up with the latest goings-on with the project:
+;;; Follow us on Twitter , or...
+;;; Like us on Facebook , or...
+;;; Collaborate on GitHub , or...
+;;; Discuss on Google Groups .
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Browscap Version
+
+[GJK_Browscap_Version]
+Version=5038
+Released=Fri, 09 Jan 2015 13:36:16 +0000
+Format=php
+Type=
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DefaultProperties
+
+[DefaultProperties]
+Comment="DefaultProperties"
+Browser="DefaultProperties"
+Version="0.0"
+MajorVer=0
+MinorVer=0
+Platform="unknown"
+Platform_Version=unknown
+Alpha="false"
+Beta="false"
+Win16="false"
+Win32="false"
+Win64="false"
+Frames="false"
+IFrames="false"
+Tables="false"
+Cookies="false"
+BackgroundSounds="false"
+JavaScript="false"
+VBScript="false"
+JavaApplets="false"
+ActiveXControls="false"
+isMobileDevice="false"
+isTablet="false"
+isSyndicationReader="false"
+Crawler="false"
+CssVersion=0
+AolVersion=0
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 360Spider
+
+[360Spider]
+Parent="DefaultProperties"
+Comment="360Spider"
+Browser="360Spider"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.0; *WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win2000"
+Platform_Version="5.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.01*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win2000"
+Platform_Version="5.01"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.0*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.1;*Win64? x64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.1*WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.1*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.2;*Win64? x64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.2*WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.2*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 5.2;*Win64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.0;*Win64? x64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.0*WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.0*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.1*Win64? x64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.1*WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.1*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.2*Win64? x64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.2*WOW64*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0*; *Windows NT 6.2*Trident/4.0*)* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 5.1*WOW64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 5.1*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 5.2*WOW64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 5.2*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.0*WOW64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.0*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.1*Win64? x64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.1*WOW64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.1*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.2*Win64? x64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.2*WOW64*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0*; *Windows NT 6.2*Trident/5.0* 360Spider]
+Parent="360Spider"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Firefox/*; 360Spider*]
+Parent="360Spider"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ask
+
+[Ask]
+Parent="DefaultProperties"
+Comment="Ask"
+Browser="Ask"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/?.0 (compatible; Ask Jeeves/Teoma*)]
+Parent="Ask"
+Browser="Teoma"
+
+[Mozilla/2.0 (compatible; Ask Jeeves)]
+Parent="Ask"
+Browser="AskJeeves"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 80Legs
+
+[80Legs]
+Parent="DefaultProperties"
+Comment="80Legs"
+Browser="80Legs"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; *; http://www.80legs.com/*) Gecko/*]
+Parent="80Legs"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AhrefsBot
+
+[AhrefsBot]
+Parent="DefaultProperties"
+Comment="AhrefsBot"
+Browser="AhrefsBot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; AhrefsBot/3.1*]
+Parent="AhrefsBot"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (compatible; AhrefsBot/4.0*]
+Parent="AhrefsBot"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible; AhrefsBot/5.0*]
+Parent="AhrefsBot"
+Version="5.0"
+MajorVer=5
+
+[Mozilla/5.0 (compatible; AhrefsBot/*]
+Parent="AhrefsBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Adbeat
+
+[Adbeat]
+Parent="DefaultProperties"
+Comment="Adbeat"
+Browser="Adbeat Bot"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux x86*) adbeat.com* Gecko/* Firefox/*AppleWebKit/*Safari/*]
+Parent="Adbeat"
+Platform="Linux"
+
+[adbeat_bot*]
+Parent="Adbeat"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NikiBot
+
+[NikiBot]
+Parent="DefaultProperties"
+Comment="NikiBot"
+Browser="NikiBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[niki-bot]
+Parent="NikiBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GrapeshotCrawler
+
+[GrapeshotCrawler]
+Parent="DefaultProperties"
+Comment="GrapeshotCrawler"
+Browser="GrapeshotCrawler"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; GrapeshotCrawler/2.0; +http://www.grapeshot.co.uk/crawler.php)]
+Parent="GrapeshotCrawler"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; GrapeshotCrawler/*; +http://www.grapeshot.co.uk/crawler.php)]
+Parent="GrapeshotCrawler"
+
+[Mozilla/5.0 (compatible; grapeFX/0.9; crawler@grapeshot.co.uk]
+Parent="GrapeshotCrawler"
+Browser="grapeFX"
+Version="0.9"
+MinorVer=9
+
+[Mozilla/5.0 (compatible; grapeFX/*; crawler@grapeshot.co.uk]
+Parent="GrapeshotCrawler"
+Browser="grapeFX"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Anonymizied
+
+[Anonymizied]
+Parent="DefaultProperties"
+Comment="Anonymizied"
+Browser="Anonymizied"
+Crawler="true"
+
+[Anonymisiert durch AlMiSoft Browser-Maulkorb (Anonymisier*]
+Parent="Anonymizied"
+
+[Anonymisiert*]
+Parent="Anonymizied"
+
+[Anonymizer/*]
+Parent="Anonymizied"
+
+[Anonymizied*]
+Parent="Anonymizied"
+
+[Anonymous*]
+Parent="Anonymizied"
+
+[Anonymous/*]
+Parent="Anonymizied"
+
+[http://Anonymouse.org/*]
+Parent="Anonymizied"
+
+[Mozilla/5.0 (Randomized by FreeSafeIP*]
+Parent="Anonymizied"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yandex
+
+[Yandex]
+Parent="DefaultProperties"
+Comment="Yandex"
+Browser="Yandex"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; YandexAddurl/*)]
+Parent="Yandex"
+Browser="YandexAddURL"
+
+[Mozilla/5.0 (compatible; YandexBlogs/*)]
+Parent="Yandex"
+Browser="YandexBlogs"
+
+[Mozilla/5.0 (compatible; YandexBot/*; MirrorDetector*)]
+Parent="Yandex"
+Browser="Yandex MirrorDetector"
+
+[Mozilla/5.0 (compatible; YandexCatalog/*)]
+Parent="Yandex"
+Browser="YandexCatalog"
+
+[Mozilla/5.0 (compatible; YandexDirect/*)]
+Parent="Yandex"
+Browser="YandexDirect-Dyatel"
+
+[Mozilla/5.0 (compatible; YandexFavicons/*)]
+Parent="Yandex"
+Browser="YandexFavicons"
+
+[Mozilla/5.0 (compatible; YandexImageResizer/*)]
+Parent="Yandex"
+Browser="YandexImageResizer"
+
+[Mozilla/5.0 (compatible; YandexImages/*)]
+Parent="Yandex"
+Browser="YandexImages"
+
+[Mozilla/5.0 (compatible; YandexMedia/*)]
+Parent="Yandex"
+Browser="YandexMedia"
+
+[Mozilla/5.0 (compatible; YandexMetrika/*)]
+Parent="Yandex"
+Browser="YandexMetrika"
+
+[Mozilla/5.0 (compatible; YandexNews/*)]
+Parent="Yandex"
+Browser="YandexNews"
+
+[Mozilla/5.0 (compatible; YandexVideo/*)]
+Parent="Yandex"
+Browser="YandexVideo"
+
+[Mozilla/5.0 (compatible; YandexWebmaster/*)]
+Parent="Yandex"
+Browser="YandexWebmaster"
+
+[Mozilla/5.0 (compatible; YandexZakladki/*)]
+Parent="Yandex"
+Browser="YandexZakladki"
+
+[Yandex/1.01.001 (compatible; Win16; *)]
+Parent="Yandex"
+
+[Mozilla/4.0 (*compatible*;*MSIE 5.0; YANDEX)]
+Parent="Yandex"
+
+[Mozilla/5.0 (compatible; YandexBot/*; MirrorDetector)]
+Parent="Yandex"
+
+[Mozilla/5.0 (compatible; YandexZakladki/*; Dyatel; +http://yandex.com/bots)]
+Parent="Yandex"
+
+[YaDirectBot/*]
+Parent="Yandex"
+
+[Yandex/*]
+Parent="Yandex"
+
+[YandexSomething/*]
+Parent="Yandex"
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.2; en-US; rv:1.9) Gecko VisualParser/3.0]
+Parent="Yandex"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (compatible; YandexAddurl/*]
+Parent="Yandex"
+Browser="YandexAddURL"
+
+[Mozilla/5.0 (compatible; YandexCatalog/*]
+Parent="Yandex"
+Browser="YandexCatalog"
+
+[Mozilla/5.0 (compatible; YandexDirect/*]
+Parent="Yandex"
+Browser="YandexDirect-Dyatel"
+
+[Mozilla/5.0 (compatible; YandexFavicons/*]
+Parent="Yandex"
+Browser="YandexFavicons"
+
+[Mozilla/5.0 (compatible; YandexImageResizer/*]
+Parent="Yandex"
+Browser="YandexImageResizer"
+
+[Mozilla/5.0 (compatible; YandexImages/*]
+Parent="Yandex"
+Browser="YandexImages"
+
+[Mozilla/5.0 (compatible; YandexMedia/*]
+Parent="Yandex"
+Browser="YandexMedia"
+
+[Mozilla/5.0 (compatible; YandexMetrika/*]
+Parent="Yandex"
+Browser="YandexMetrika"
+
+[Mozilla/5.0 (compatible; YandexNews/*]
+Parent="Yandex"
+Browser="YandexNews"
+
+[Mozilla/5.0 (compatible; YandexVideo/*]
+Parent="Yandex"
+Browser="YandexVideo"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Apache Bench
+
+[Apache Bench]
+Parent="DefaultProperties"
+Comment="Apache Bench"
+Browser="Apache Bench"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[ApacheBench/*]
+Parent="Apache Bench"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YandexBot
+
+[YandexBot]
+Parent="DefaultProperties"
+Comment="YandexBot"
+Browser="YandexBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; YandexBot/3.0*]
+Parent="YandexBot"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; YandexBot/*]
+Parent="YandexBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Goldfire Server
+
+[Goldfire Server]
+Parent="DefaultProperties"
+Comment="Goldfire Server"
+Browser="Goldfire Server"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Goldfire Server*]
+Parent="Goldfire Server"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ArchitextSpider
+
+[ArchitextSpider]
+Parent="DefaultProperties"
+Comment="ArchitextSpider"
+Browser="ArchitextSpider"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[ArchitextSpider*]
+Parent="ArchitextSpider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Become
+
+[Become]
+Parent="DefaultProperties"
+Comment="Become"
+Browser="Become"
+isSyndicationReader="true"
+Crawler="true"
+
+[*BecomeBot/*]
+Parent="Become"
+Browser="BecomeBot"
+
+[*BecomeBot@exava.com*]
+Parent="Become"
+Browser="BecomeBot"
+
+[MonkeyCrawl/*]
+Parent="Become"
+Browser="MonkeyCrawl"
+
+[Mozilla/5.0 (compatible; BecomeJPBot/2.3; *)]
+Parent="Become"
+Browser="BecomeJPBot"
+
+[Mozilla/5.0 (compatible; BecomeJPBot/2.3*)]
+Parent="Become"
+Browser="BecomeJPBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Convera
+
+[Convera]
+Parent="DefaultProperties"
+Comment="Convera"
+Browser="Convera"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[ConveraCrawler/*]
+Parent="Convera"
+Browser="ConveraCrawler"
+
+[ConveraMultiMediaCrawler/0.1*]
+Parent="Convera"
+Browser="ConveraMultiMediaCrawler"
+Version="0.1"
+MinorVer=1
+
+[CrawlConvera*]
+Parent="Convera"
+Browser="CrawlConvera"
+
+[ConveraCrawler/0.4*]
+Parent="Convera"
+Version="0.4"
+MinorVer=4
+
+[ConveraCrawler/0.5*]
+Parent="Convera"
+Version="0.5"
+MinorVer=5
+
+[ConveraCrawler/0.6*]
+Parent="Convera"
+Version="0.6"
+MinorVer=6
+
+[ConveraCrawler/0.7*]
+Parent="Convera"
+Version="0.7"
+MinorVer=7
+
+[ConveraCrawler/0.8*]
+Parent="Convera"
+Version="0.8"
+MinorVer=8
+
+[ConveraCrawler/0.9*]
+Parent="Convera"
+Version="0.9"
+MinorVer=9
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Best of the Web
+
+[Best of the Web]
+Parent="DefaultProperties"
+Comment="Best of the Web"
+Browser="Best of the Web"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; BOTW Feed Grabber*http://botw.org)]
+Parent="Best of the Web"
+Browser="BOTW Feed Grabber"
+isSyndicationReader="true"
+
+[Mozilla/4.0 (compatible; BOTW Feed Grabber; *http://botw.org)]
+Parent="Best of the Web"
+Browser="BOTW Feed Grabber"
+isSyndicationReader="true"
+
+[Mozilla/4.0 (compatible; BOTW Spider; *http://botw.org)]
+Parent="Best of the Web"
+Browser="BOTW Spider"
+
+[Mozilla/4.0 (compatible; BOTW Spider*http://botw.org)]
+Parent="Best of the Web"
+Browser="BOTW Spider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ContextAd Bot
+
+[ContextAd Bot]
+Parent="DefaultProperties"
+Comment="ContextAd Bot"
+Browser="ContextAd Bot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[ContextAd Bot 1.0*]
+Parent="ContextAd Bot"
+Version="1.0"
+MajorVer=1
+
+[ContextAd Bot*]
+Parent="ContextAd Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Java Standard Library
+
+[Java Standard Library]
+Parent="DefaultProperties"
+Comment="Java Standard Library"
+Browser="Java Standard Library"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Java/1.4*]
+Parent="Java Standard Library"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[Java/1.5*]
+Parent="Java Standard Library"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+
+[Java/1.6*]
+Parent="Java Standard Library"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[Java/1.7*]
+Parent="Java Standard Library"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[Java/1.17*]
+Parent="Java Standard Library"
+Version="1.17"
+MajorVer=1
+MinorVer=17
+
+[Java/*]
+Parent="Java Standard Library"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DotBot
+
+[DotBot]
+Parent="DefaultProperties"
+Comment="DotBot"
+Browser="DotBot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[DotBot/* (http://www.dotnetdotcom.org/*)]
+Parent="DotBot"
+
+[Mozilla/5.0 (compatible; DotBot/*; http://www.dotnetdotcom.org/*)]
+Parent="DotBot"
+
+[Mozilla/5.0 (compatible; DotBot/1.1; http://www.opensiteexplorer.org/dotbot*)]
+Parent="DotBot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; DotBot/*; http://www.opensiteexplorer.org/dotbot*)]
+Parent="DotBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; bitlybot
+
+[bitlybot]
+Parent="DefaultProperties"
+Comment="Bitlybot"
+Browser="BitlyBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[bitlybot/2.*]
+Parent="bitlybot"
+Version="2.0"
+MajorVer=2
+
+[bitlybot*]
+Parent="bitlybot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BlitzBot
+
+[BlitzBot]
+Parent="DefaultProperties"
+Comment="BlitzBot"
+Browser="BlitzBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[BlitzBOT*]
+Parent="BlitzBot"
+
+[BlitzBOT@tricus.com (Mozilla compatible)*]
+Parent="BlitzBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Entireweb
+
+[Entireweb]
+Parent="DefaultProperties"
+Comment="Entireweb"
+Browser="Entireweb"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Speedy Spider; http://www.entireweb.com/about/search_tech/speedy_spider/)]
+Parent="Entireweb"
+
+[Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)]
+Parent="Entireweb"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)]
+Parent="Entireweb"
+
+[Mozilla/5.0 (Windows; ?; Windows NT 5.1; en-US) Speedy Spider (http://www.entireweb.com/about/search_tech/speedy_spider/)]
+Parent="Entireweb"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Blue Coat Systems
+
+[Blue Coat Systems]
+Parent="DefaultProperties"
+Comment="Blue Coat Systems"
+Browser="Blue Coat Systems"
+Crawler="true"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Bluecoat DRTR)]
+Parent="Blue Coat Systems"
+Browser="Bluecoat"
+
+[BlueCoat ProxySG]
+Parent="Blue Coat Systems"
+Browser="BlueCoat ProxySG"
+
+[CerberianDrtrs/*]
+Parent="Blue Coat Systems"
+Browser="Cerberian"
+
+[Inne: Mozilla/4.0 (compatible; Cerberian Drtrs*)]
+Parent="Blue Coat Systems"
+Browser="Cerberian"
+
+[Mozilla/4.0 (compatible; Cerberian Drtrs*)]
+Parent="Blue Coat Systems"
+Browser="Cerberian"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Bluecoat DRTR)]
+Parent="Blue Coat Systems"
+Browser="Bluecoat"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Envolk
+
+[Envolk]
+Parent="DefaultProperties"
+Comment="Envolk"
+Browser="Envolk"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[envolk/* (?http://www.envolk.com/envolk*)]
+Parent="Envolk"
+
+[envolk?ITS?spider/* (?http://www.envolk.com/envolk*)]
+Parent="Envolk"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Boitho
+
+[Boitho]
+Parent="DefaultProperties"
+Comment="Boitho"
+Browser="Boitho"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[boitho.com-*]
+Parent="Boitho"
+
+[boitho.com-dc/*]
+Parent="Boitho"
+Browser="boitho.com-dc"
+
+[boitho.com-robot/*]
+Parent="Boitho"
+Browser="boitho.com-robot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exalead
+
+[Exalead]
+Parent="DefaultProperties"
+Comment="Exalead"
+Browser="Exalead"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Konqueror/*; Linux) KHTML/* (like Gecko) (Exabot-Thumbnails)]
+Parent="Exalead"
+
+[Exabot-Test/*]
+Parent="Exalead"
+Browser="Exabot-Test"
+
+[Exabot/2.0]
+Parent="Exalead"
+Browser="Exabot"
+Version="2.0"
+MajorVer=2
+
+[Exabot/3.0]
+Parent="Exalead"
+Browser="Exabot"
+Version="3.0"
+MajorVer=3
+Platform="Liberate"
+
+[Exabot/*]
+Parent="Exalead"
+
+[Exalead NG/*]
+Parent="Exalead"
+Browser="Exalead NG"
+
+[Mozilla/5.0 (compatible; Exabot/3.0*)]
+Parent="Exalead"
+Browser="Exabot"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; Exabot/*)]
+Parent="Exalead"
+Browser="Exabot"
+
+[Mozilla/5.0 (compatible; NGBot/*)]
+Parent="Exalead"
+Browser="NGBot"
+
+[NG-Search/*]
+Parent="Exalead"
+Browser="NG-Search"
+
+[ng/*]
+Parent="Exalead"
+Browser="Exalead Previewer"
+
+[*Exabot@exava.com*]
+Parent="Exalead"
+Browser="Exabot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Exabot-Images
+
+[Exabot-Images]
+Parent="DefaultProperties"
+Comment="Exabot-Images"
+Browser="Exabot-Images"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Exabot-Images/1.0*]
+Parent="Exabot-Images"
+Version="1.0"
+MajorVer=1
+
+[Exabot-Images/*]
+Parent="Exabot-Images"
+
+[Mozilla/5.0 (compatible; Exabot-Images/3.0*)]
+Parent="Exabot-Images"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; Exabot-Images/*)]
+Parent="Exabot-Images"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Facebook
+
+[Facebook]
+Parent="DefaultProperties"
+Comment="Facebook"
+Browser="Facebook"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[facebookexternalhit/1.0*]
+Parent="Facebook"
+Browser="FacebookExternalHit"
+Version="1.0"
+MajorVer=1
+
+[facebookexternalhit/1.1*]
+Parent="Facebook"
+Browser="FacebookExternalHit"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[facebookexternalhit/*]
+Parent="Facebook"
+Browser="FacebookExternalHit"
+
+[Facebook share follower]
+Parent="Facebook"
+
+[facebookplatform/1.0 *]
+Parent="Facebook"
+Version="1.0"
+MajorVer=1
+
+[facebookplatform/*]
+Parent="Facebook"
+
+[Facebook API PHP5 Client 1.1 (curl)*]
+Parent="Facebook"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Facebot/1.0*]
+Parent="Facebook"
+Browser="Facebot"
+Version="1.0"
+MajorVer=1
+
+[Facebot/*]
+Parent="Facebook"
+Browser="Facebot"
+
+[facebookscraper/*( http*://www.facebook.com/sharescraper_help.php)*]
+Parent="Facebook"
+Browser="Facebookscraper"
+
+[facebookscraper/1.0( http*://www.facebook.com/sharescraper_help.php)*]
+Parent="Facebook"
+Browser="Facebookscraper"
+Version="1.0"
+MajorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Xing
+
+[Xing]
+Parent="DefaultProperties"
+Comment="Xing"
+Browser="Xing"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[XING-contenttabreceiver/2.0]
+Parent="Xing"
+Browser="XING Contenttabreceiver"
+Version="2.0"
+MajorVer=2
+
+[XING-contenttabreceiver/*]
+Parent="Xing"
+Browser="XING Contenttabreceiver"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fast/AllTheWeb
+
+[Fast/AllTheWeb]
+Parent="DefaultProperties"
+Comment="Fast/AllTheWeb"
+Browser="Fast/AllTheWeb"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[*FAST Enterprise Crawler*]
+Parent="Fast/AllTheWeb"
+Browser="FAST Enterprise Crawler"
+
+[FAST Data Search Document Retriever/4.0*]
+Parent="Fast/AllTheWeb"
+Browser="FAST Data Search Document Retriever"
+
+[FAST MetaWeb Crawler (helpdesk at fastsearch dot com)]
+Parent="Fast/AllTheWeb"
+Browser="FAST MetaWeb Crawler"
+
+[Fast PartnerSite Crawler*]
+Parent="Fast/AllTheWeb"
+Browser="FAST PartnerSite"
+
+[FAST-WebCrawler/*]
+Parent="Fast/AllTheWeb"
+Browser="FAST-WebCrawler"
+
+[FAST-WebCrawler/*/FirstPage*]
+Parent="Fast/AllTheWeb"
+Browser="FAST-WebCrawler/FirstPage"
+
+[FAST-WebCrawler/*/Fresh*]
+Parent="Fast/AllTheWeb"
+Browser="FAST-WebCrawler/Fresh"
+
+[FAST-WebCrawler/*/PartnerSite*]
+Parent="Fast/AllTheWeb"
+Browser="FAST PartnerSite"
+
+[FAST-WebCrawler/*?Multimedia*]
+Parent="Fast/AllTheWeb"
+Browser="FAST-WebCrawler/Multimedia"
+
+[FastSearch Web Crawler for*]
+Parent="Fast/AllTheWeb"
+Browser="FastSearch Web Crawler"
+
+[Fast Crawler v X(compatible; Konqueror/*; FreeBSD) (KHTML,*like Gecko*)]
+Parent="Fast/AllTheWeb"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gigabot
+
+[Gigabot]
+Parent="DefaultProperties"
+Comment="Gigabot"
+Browser="Gigabot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Gigabot*]
+Parent="Gigabot"
+
+[GigabotSiteSearch/*]
+Parent="Gigabot"
+Browser="GigabotSiteSearch"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ilse
+
+[Ilse]
+Parent="DefaultProperties"
+Comment="Ilse"
+Browser="Ilse"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[IlseBot/*]
+Parent="Ilse"
+
+[INGRID/?.0*]
+Parent="Ilse"
+
+[Mozilla/3.0 (INGRID/*]
+Parent="Ilse"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; TurnitinBot
+
+[TurnitinBot]
+Parent="DefaultProperties"
+Comment="TurnitinBot"
+Browser="TurnitinBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[TurnitinBot/2.1*]
+Parent="TurnitinBot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General Crawlers
+
+[General Crawlers]
+Parent="DefaultProperties"
+Comment="General Crawlers"
+Browser="General Crawlers"
+Crawler="true"
+
+[*altervista.org*]
+Parent="General Crawlers"
+Browser="altervista.org"
+
+[*Spinn3r*http://spinn3r.com/robot*]
+Parent="General Crawlers"
+Browser="Spinn3r"
+
+[*SqwidgeBot*]
+Parent="General Crawlers"
+Browser="SqwidgeBot"
+
+[A .NET Web Crawler]
+Parent="General Crawlers"
+Browser="A .NET Web Crawler"
+
+[BabalooSpider/1.*]
+Parent="General Crawlers"
+Browser="BabalooSpider"
+Version="1.0"
+MajorVer=1
+
+[BilgiBot/*]
+Parent="General Crawlers"
+Browser="BilgiBot"
+
+[bot/* (bot; *bot@bot.bot)]
+Parent="General Crawlers"
+Browser="bot"
+
+[cisco-IOS]
+Parent="General Crawlers"
+Browser="cisco-IOS"
+
+[Covario-IDS/*]
+Parent="General Crawlers"
+Browser="Covario-IDS"
+
+[CyberPatrol*]
+Parent="General Crawlers"
+Browser="CyberPatrol"
+
+[Cynthia 1.0]
+Parent="General Crawlers"
+Browser="Cynthia"
+Version="1.0"
+MajorVer=1
+
+[cz32ts]
+Parent="General Crawlers"
+Browser="cz32ts"
+
+[ddetailsbot (http://www.displaydetails.com)]
+Parent="General Crawlers"
+Browser="ddetailsbot"
+
+[DomainCrawler/1.0 (info@domaincrawler.com; http://www.domaincrawler.com/domains/view/*)]
+Parent="General Crawlers"
+Browser="DomainCrawler"
+
+[DomainsDB.net MetaCrawler*]
+Parent="General Crawlers"
+Browser="DomainsDB"
+
+[DomainWatcher Bot*]
+Parent="General Crawlers"
+Browser="DomainWatcher Bot"
+
+[Drupal (*)]
+Parent="General Crawlers"
+Browser="Drupal"
+
+[Dumbot (version *)*]
+Parent="General Crawlers"
+Browser="Dumbfind"
+
+[EuripBot/*]
+Parent="General Crawlers"
+Browser="Europe Internet Portal"
+
+[eventax/*]
+Parent="General Crawlers"
+Browser="eventax"
+
+[FANGCrawl/*]
+Parent="General Crawlers"
+Browser="Safe-t.net Web Filtering Service"
+
+[favorstarbot/*]
+Parent="General Crawlers"
+Browser="favorstarbot"
+
+[FollowSite.com (*)]
+Parent="General Crawlers"
+Browser="FollowSite"
+
+[Gaisbot*]
+Parent="General Crawlers"
+Browser="Gaisbot"
+
+[gosospider Mozilla/5.0 (compatible; GosoSpider*)]
+Parent="General Crawlers"
+Browser="GosoSpider"
+
+[Healthbot/Health_and_Longevity_Project_(HealthHaven.com) ]
+Parent="General Crawlers"
+Browser="Healthbot"
+
+[hitcrawler_0.*]
+Parent="General Crawlers"
+Browser="hitcrawler"
+
+[htdig/*]
+Parent="General Crawlers"
+Browser="ht://Dig"
+
+[http://hilfe.acont.de/bot.html ACONTBOT]
+Parent="General Crawlers"
+Browser="ACONTBOT"
+
+[http://www.yellowpages.com*]
+Parent="General Crawlers"
+Browser="Yellow Pages"
+
+[HuaweiSymantecSpider/*]
+Parent="General Crawlers"
+Browser="HuaweiSymantecSpider"
+
+[JetBrains*]
+Parent="General Crawlers"
+Browser="Omea Pro"
+
+[JS-Kit URL Resolver, http://js-kit.com/]
+Parent="General Crawlers"
+Browser="JS-Kit/Echo"
+
+[KakleBot - www.kakle.com/0.1]
+Parent="General Crawlers"
+Browser="KakleBot"
+
+[KBeeBot/0.*]
+Parent="General Crawlers"
+Browser="KBeeBot"
+
+[Keyword Density/*]
+Parent="General Crawlers"
+Browser="Keyword Density"
+
+[Lincoln State Web Browser]
+Parent="General Crawlers"
+Browser="Lincoln State Web Browser"
+
+[Links4US-Crawler,*]
+Parent="General Crawlers"
+Browser="Links4US-Crawler"
+
+[Lorkyll *.* -- lorkyll@444.net]
+Parent="General Crawlers"
+Browser="Lorkyll"
+
+[Lsearch/sondeur]
+Parent="General Crawlers"
+Browser="Lsearch/sondeur"
+
+[ZmEu]
+Parent="General Crawlers"
+Browser="ZmEu"
+
+[Made by ZmEu @ WhiteHat v0.* (www.WhiteHat.ro)]
+Parent="General Crawlers"
+Browser="ZmEu"
+
+[Made by ZmEu @ WhiteHat*]
+Parent="General Crawlers"
+Browser="ZmEu"
+
+[MapoftheInternet.com?(?http://MapoftheInternet.com)]
+Parent="General Crawlers"
+Browser="MapoftheInternet"
+
+[Metaspinner/0.01 (Metaspinner; http://www.meta-spinner.de/; support@meta-spinner.de/)]
+Parent="General Crawlers"
+Browser="Metaspinner"
+Version="0.01"
+MinorVer=01
+
+[metatagsdir/*]
+Parent="General Crawlers"
+Browser="metatagsdir"
+
+[Microsoft Windows Network Diagnostics]
+Parent="General Crawlers"
+Browser="Microsoft Windows Network Diagnostics"
+
+[Miva (AlgoFeedback@miva.com)]
+Parent="General Crawlers"
+Browser="Miva"
+
+[moget/*]
+Parent="General Crawlers"
+Browser="Goo"
+
+[Mozilla/* (compatible; WebCapture*)]
+Parent="General Crawlers"
+Browser="WebCapture"
+
+[Mozilla/*(*redditbot/*http://www.reddit.com/feedback*)]
+Parent="General Crawlers"
+Browser="Reddit"
+
+[Mozilla/4.0 (compatible; DepSpid/*)]
+Parent="General Crawlers"
+Browser="DepSpid"
+
+[Mozilla/4.0 (compatible; MSIE 4.01; Vonna.com b o t)]
+Parent="General Crawlers"
+Browser="Vonna.com"
+
+[Mozilla/4.0 (compatible*; MSIE 4.01; Vonna.com b o t)]
+Parent="General Crawlers"
+Browser="Vonna.com"
+
+[Mozilla/4.0 (compatible; MSIE 4.01; Windows95)]
+Parent="General Crawlers"
+Browser="Generic Crawler"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MyFamilyBot/*)]
+Parent="General Crawlers"
+Browser="MyFamilyBot"
+
+[Mozilla/4.0 (compatible; N-Stealth)]
+Parent="General Crawlers"
+Browser="N-Stealth"
+
+[Mozilla/4.0 (compatible; Scumbot/*; Linux/*)]
+Parent="General Crawlers"
+Browser="Scumbot"
+
+[Mozilla/4.0 (compatible; Spider; Linux)]
+Parent="General Crawlers"
+Browser="Generic Crawler"
+
+[Mozilla/4.0 (compatible; Win32)]
+Parent="General Crawlers"
+Browser="Unknown Crawler"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) ADM/*]
+Parent="General Crawlers"
+Browser="Adobe Dialog Manager"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (compatible; AdHitz; http://adhitz.com/)]
+Parent="General Crawlers"
+Browser="AdHitz"
+
+[Mozilla/5.0 (compatible; aiHitBot*/*)]
+Parent="General Crawlers"
+Browser="aiHitBot"
+
+[Mozilla/5.0 (compatible; aiHitBot*/*; +http://www.aihit.com/)]
+Parent="General Crawlers"
+Browser="aiHitBot"
+
+[Mozilla/5.0 (compatible; BuzzRankingBot/*)]
+Parent="General Crawlers"
+Browser="BuzzRankingBot"
+
+[Mozilla/5.0 (compatible; ClixSense; http://www.clixsense.com/)]
+Parent="General Crawlers"
+Browser="ClixSense"
+
+[mozilla/5.0 (compatible; genevabot +http://www.healthdash.com)]
+Parent="General Crawlers"
+Browser="genevabot"
+
+[Mozilla/5.0 (compatible; JadynAveBot; *http://www.jadynave.com/robot*]
+Parent="General Crawlers"
+Browser="JadynAveBot"
+
+[Mozilla/5.0 (compatible; Kyluka crawl; http://www.kyluka.com/crawl.html; crawl@kyluka.com)]
+Parent="General Crawlers"
+Browser="Kyluka"
+
+[Mozilla/5.0 (compatible; LegalAnalysisAgent/1.*; http://www.legalx.net)]
+Parent="General Crawlers"
+Browser="LegalAnalysisAgent"
+
+[Mozilla/5.0 (compatible; MSIE 7.0 ?http://www.europarchive.org)]
+Parent="General Crawlers"
+Browser="Europe Web Archive"
+
+[Mozilla/5.0 (compatible*; MSIE 7.0 ?http://www.europarchive.org)]
+Parent="General Crawlers"
+Browser="Europe Web Archive"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; MSIE 6.0; ScanAlert; +http://www.scanalert.com/bot.jsp) Firefox/*]
+Parent="General Crawlers"
+Browser="McAffee Scan Alert"
+
+[Mozilla/5.0 (compatible*; MSIE 7.0; MSIE 6.0; ScanAlert; +http://www.scanalert.com/bot.jsp) Firefox/*]
+Parent="General Crawlers"
+Browser="McAffee Scan Alert"
+
+[Mozilla/5.0 (compatible; Nigma.ru/*; crawler@nigma.ru)]
+Parent="General Crawlers"
+Browser="Nigma.ru"
+
+[Mozilla/5.0 (compatible; Plukkie/1.?; http://www.botje.com/plukkie.htm)]
+Parent="General Crawlers"
+Browser="Plukkie"
+
+[Mozilla/5.0 (compatible; SuchbaerBot/0.*; +http://bot.suchbaer.de/info.html)]
+Parent="General Crawlers"
+Browser="SuchbaerBot"
+
+[Mozilla/5.0 (compatible; TweetedTimes Bot/1.0*]
+Parent="General Crawlers"
+Browser="TweetedTimes Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; TweetedTimes Bot/*]
+Parent="General Crawlers"
+Browser="TweetedTimes Bot"
+
+[Mozilla/5.0 (compatible; Twingly Recon; http://www.twingly.com/)]
+Parent="General Crawlers"
+Browser="Twingly Recon"
+
+[Mozilla/5.0 (compatible; unwrapbot/2.*; +http://www.unwrap.jp*)]
+Parent="General Crawlers"
+Browser="UnWrap"
+
+[Mozilla/5.0 (compatible; Vermut*)]
+Parent="General Crawlers"
+Browser="Vermut"
+
+[Mozilla/5.0 (compatible; Viralheat Bot/*) ]
+Parent="General Crawlers"
+Browser="Viralheat"
+
+[Mozilla/5.0 (compatible; Webbot/*)]
+Parent="General Crawlers"
+Browser="Webbot.ru"
+
+[n4p_bot*]
+Parent="General Crawlers"
+Browser="n4p_bot"
+
+[nabot*]
+Parent="General Crawlers"
+Browser="Nabot"
+
+[NetCarta_WebMapper/*]
+Parent="General Crawlers"
+Browser="NetCarta_WebMapper"
+
+[Netchart Adv Crawler*]
+Parent="General Crawlers"
+Browser="Netchart Adv Crawler"
+
+[NetID.com Bot*]
+Parent="General Crawlers"
+Browser="NetID.com Bot"
+
+[neTVision AG andreas.heidoetting@thomson-webcast.net]
+Parent="General Crawlers"
+Browser="neTVision"
+
+[NextopiaBOT*]
+Parent="General Crawlers"
+Browser="NextopiaBOT"
+
+[nicebot]
+Parent="General Crawlers"
+Browser="nicebot"
+
+[niXXieBot?Foster*]
+Parent="General Crawlers"
+Browser="niXXiebot-Foster"
+
+[Nozilla/P.N (Just for IDS woring)]
+Parent="General Crawlers"
+Browser="Nozilla/P.N"
+
+[NSO_Debugger_User/2.0]
+Parent="General Crawlers"
+Browser="NSO_Debugger_User"
+Version="2.0"
+MajorVer=2
+
+[NSO_Debugger_User/*]
+Parent="General Crawlers"
+Browser="NSO_Debugger_User"
+
+[Nudelsalat/*]
+Parent="General Crawlers"
+Browser="Nudelsalat"
+
+[NV32ts]
+Parent="General Crawlers"
+Browser="NV32ts"
+
+[Ocelli/*]
+Parent="General Crawlers"
+Browser="Ocelli"
+
+[OpenTaggerBot (http://www.opentagger.com/opentaggerbot.htm)]
+Parent="General Crawlers"
+Browser="OpenTaggerBot"
+
+[Oracle Enterprise Search]
+Parent="General Crawlers"
+Browser="Oracle Enterprise Search"
+
+[Oracle Ultra Search]
+Parent="General Crawlers"
+Browser="Oracle Ultra Search"
+
+[Pajaczek/*]
+Parent="General Crawlers"
+Browser="Pajaczek"
+
+[panscient.com]
+Parent="General Crawlers"
+Browser="panscient.com"
+
+[Patwebbot (http://www.herz-power.de/technik.html)]
+Parent="General Crawlers"
+Browser="Patwebbot"
+
+[PDFBot (crawler@pdfind.com)]
+Parent="General Crawlers"
+Browser="PDFBot"
+
+[PhpDig/*]
+Parent="General Crawlers"
+Browser="PhpDig"
+
+[PlantyNet_WebRobot*]
+Parent="General Crawlers"
+Browser="PlantyNet"
+
+[PluckItCrawler/*]
+Parent="General Crawlers"
+Browser="PluckItCrawler"
+isMobileDevice="true"
+
+[PMAFind]
+Parent="General Crawlers"
+Browser="PMAFind"
+
+[Poodle_predictor_1.0]
+Parent="General Crawlers"
+Browser="Poodle Predictor"
+
+[QuickFinder Crawler]
+Parent="General Crawlers"
+Browser="QuickFinder"
+
+[Radiation Retriever*]
+Parent="General Crawlers"
+Browser="Radiation Retriever"
+
+[RedCarpet/*]
+Parent="General Crawlers"
+Browser="RedCarpet"
+
+[RixBot (http://babelserver.org/rix)]
+Parent="General Crawlers"
+Browser="RixBot"
+
+[roboobot/1.* (roboo; http://wap.roboo.com; winter.pi@roboo.com)]
+Parent="General Crawlers"
+Browser="roboo"
+
+[Rome Client (http://tinyurl.com/64t5n) Ver: 0.*]
+Parent="General Crawlers"
+Browser="TinyURL"
+
+[SBIder/*]
+Parent="General Crawlers"
+Browser="SiteSell"
+
+[ScollSpider/2.*]
+Parent="General Crawlers"
+Browser="ScollSpider"
+
+[Search Fst]
+Parent="General Crawlers"
+Browser="Search Fst"
+
+[searchbot admin@google.com]
+Parent="General Crawlers"
+Browser="searchbot"
+
+[Seeker.lookseek.com]
+Parent="General Crawlers"
+Browser="LookSeek"
+
+[semanticdiscovery/*]
+Parent="General Crawlers"
+Browser="Semantic Discovery"
+
+[Shelob (shelob@gmx.net)]
+Parent="General Crawlers"
+Browser="Shelob"
+
+[shelob v1.*]
+Parent="General Crawlers"
+Browser="shelob"
+Version="1.0"
+MajorVer=1
+
+[ShopWiki/1.0*]
+Parent="General Crawlers"
+Browser="ShopWiki"
+Version="1.0"
+MajorVer=1
+
+[ShowXML/1.0 libwww/5.4.0]
+Parent="General Crawlers"
+Browser="ShowXML"
+Version="1.0"
+MajorVer=1
+
+[sitecheck.internetseer.com*]
+Parent="General Crawlers"
+Browser="Internetseer"
+
+[SMBot/*]
+Parent="General Crawlers"
+Browser="SMBot"
+
+[sohu*]
+Parent="General Crawlers"
+Browser="sohu-search"
+
+[SpankBot*]
+Parent="General Crawlers"
+Browser="SpankBot"
+
+[spider (tspyyp@tom.com)]
+Parent="General Crawlers"
+Browser="spider (tspyyp@tom.com)"
+
+[Sunrise/0.*]
+Parent="General Crawlers"
+Browser="Sunrise"
+
+[Superpages URL Verification Engine]
+Parent="General Crawlers"
+Browser="Superpages"
+
+[Surf Knight]
+Parent="General Crawlers"
+Browser="Surf Knight"
+
+[SurveyBot/2.3*]
+Parent="General Crawlers"
+Browser="SurveyBot"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+
+[SurveyBot/*]
+Parent="General Crawlers"
+Browser="SurveyBot"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Firefox/* (*) SurveyBot/2.3*]
+Parent="General Crawlers"
+Browser="SurveyBot"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Firefox/* (*) SurveyBot/*]
+Parent="General Crawlers"
+Browser="SurveyBot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[SynapticSearch/AI Crawler 1.?]
+Parent="General Crawlers"
+Browser="SynapticSearch"
+Version="1.0"
+MajorVer=1
+
+[SyncMgr]
+Parent="General Crawlers"
+Browser="SyncMgr"
+
+[Tagyu Agent/1.0]
+Parent="General Crawlers"
+Browser="Tagyu"
+Version="1.0"
+MajorVer=1
+
+[Talkro Web-Shot/*]
+Parent="General Crawlers"
+Browser="Talkro Web-Shot"
+
+[Tasap-image-robot/0.* (http://www.tasap.com)]
+Parent="General Crawlers"
+Browser="Tasap-image-robot"
+
+[Tecomi Bot (http://www.tecomi.com/bot.htm)]
+Parent="General Crawlers"
+Browser="Tecomi"
+
+[TencentTraveler*]
+Parent="General Crawlers"
+Browser="TencentTraveler"
+
+[TheInformant*]
+Parent="General Crawlers"
+Browser="TheInformant"
+
+[Toata dragostea*]
+Parent="General Crawlers"
+Browser="Toata dragostea"
+
+[Tutorial Crawler*]
+Parent="General Crawlers"
+Browser="Tutorial Crawler"
+
+[Twitterbot/*]
+Parent="General Crawlers"
+Browser="Twitterbot"
+
+[Twitterbot/0.*]
+Parent="General Crawlers"
+Browser="Twitterbot"
+
+[UbiCrawler/*]
+Parent="General Crawlers"
+Browser="UbiCrawler"
+
+[UCmore]
+Parent="General Crawlers"
+Browser="UCmore"
+
+[User*Agent:*]
+Parent="General Crawlers"
+Browser="Generic Crawler"
+
+[USER_AGENT]
+Parent="General Crawlers"
+Browser="Generic Crawler"
+
+[VadixBot]
+Parent="General Crawlers"
+Browser="VadixBot"
+
+[VengaBot/*]
+Parent="General Crawlers"
+Browser="VengaBot"
+
+[Visicom Toolbar]
+Parent="General Crawlers"
+Browser="Visicom Toolbar"
+
+[Visited by http://tools.geek-tools.org]
+Parent="General Crawlers"
+Browser="geek-tools.org"
+
+[Webclipping.com]
+Parent="General Crawlers"
+Browser="Webclipping.com"
+
+[webcollage*]
+Parent="General Crawlers"
+Browser="WebCollage"
+
+[WebCrawler_1.*]
+Parent="General Crawlers"
+Browser="WebCrawler"
+Version="1.0"
+MajorVer=1
+
+[WebFilter Robot*]
+Parent="General Crawlers"
+Browser="WebFilter Robot"
+
+[WeBoX/*]
+Parent="General Crawlers"
+Browser="WeBoX"
+
+[WebTrends/*]
+Parent="General Crawlers"
+Browser="WebTrends"
+
+[West Wind Internet Protocols*]
+Parent="General Crawlers"
+Browser="Versatel"
+
+[WhizBang]
+Parent="General Crawlers"
+Browser="WhizBang"
+
+[Willow Internet Crawler by Twotrees V*]
+Parent="General Crawlers"
+Browser="Willow Internet Crawler"
+
+[WIRE/* (Linux*Bot,Robot,Spider,Crawler)]
+Parent="General Crawlers"
+Browser="WIRE"
+
+[www.fi crawler, contact crawler@www.fi]
+Parent="General Crawlers"
+Browser="www.fi crawler"
+
+[Xerka WebBot v1.*]
+Parent="General Crawlers"
+Browser="Xerka"
+
+[XML Sitemaps Generator*]
+Parent="General Crawlers"
+Browser="XML Sitemaps Generator"
+
+[XSpider*]
+Parent="General Crawlers"
+Browser="XSpider"
+
+[YooW!/* (?http://www.yoow.eu)]
+Parent="General Crawlers"
+Browser="YooW!"
+
+[yp-crawl@attinteractive.com]
+Parent="General Crawlers"
+Browser="YellowPages"
+
+[QuerySeekerSpider ( http://queryseeker.com/bot.html )]
+Parent="General Crawlers"
+Browser="QuerySeekerSpider"
+
+[Mozilla/5.0 (compatible; proximic; +http://www.proximic.com/info/spider.php)*]
+Parent="General Crawlers"
+Browser="proximic"
+
+[Mozilla/4.0 (compatible*; MSIE *; Windows NT *; Trident/?.0; Alcohol Search*]
+Parent="General Crawlers"
+Browser="Alcohol Search"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE *; AugustBot/*]
+Parent="General Crawlers"
+Browser="AugustBot"
+
+[awesomebot*]
+Parent="General Crawlers"
+Browser="Awesomebot"
+
+[Cooby Bot*]
+Parent="General Crawlers"
+Browser="CoobyBot"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows NT 5.1*; CrystalSemanticsBot http://www.crystalsemantics.com/service-navigation/imprint/useragent/)*]
+Parent="General Crawlers"
+Browser="CrystalSemanticsBot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE *; Windows NT *; FeedFinder-2.0; http://bloggz.se/crawler)*]
+Parent="General Crawlers"
+Browser="FeedFinder"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/5.0 (X11; Linux*) AppleWebKit/* (KHTML,*like Gecko*)*Chrome/13.0*Safari/* botname/cpan@dataminr.com*]
+Parent="General Crawlers"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.0*Safari/* botname/cpan@dataminr.com*]
+Parent="General Crawlers"
+
+[ArtfaceBot (*compatible*;*MSIE 6.0; Mozilla/4.0; Windows NT*)]
+Parent="General Crawlers"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 4.01; Windows95)]
+Parent="General Crawlers"
+Browser="Generic Crawler"
+Platform="Win95"
+Platform_Version=95
+Win32="true"
+
+[GSLFbot*]
+Parent="General Crawlers"
+Browser="GSLFbot"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X *) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* Powered by Spider-Pig*]
+Parent="General Crawlers"
+Browser="Spider-Pig"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* Powered by Spider-Pig*]
+Parent="General Crawlers"
+Browser="Spider-Pig"
+
+[Mozilla/5.0 (*Linux*x86_64*; rv:*) Gecko/* ThumbShotsBot*]
+Parent="General Crawlers"
+Browser="ThumbShotsBot"
+Platform="Linux"
+
+[thumbshots-de-bot*]
+Parent="General Crawlers"
+Browser="thumbshots-de-bot"
+
+[netEstate NE Crawler*]
+Parent="General Crawlers"
+Browser="netEstate NE Crawler"
+
+[Mozilla/5.0 (compatible; Another Web Mining Tool 1.0; +none; awmt)*]
+Parent="General Crawlers"
+Browser="Another Web Mining Tool"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Another Web Mining Tool *; +none; awmt)*]
+Parent="General Crawlers"
+Browser="Another Web Mining Tool"
+
+[Mozilla/5.0 (compatible; WBSearchBot/1.1*; +http://www.warebay.com/bot.html)*]
+Parent="General Crawlers"
+Browser="WBSearchBot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; WBSearchBot/*; +http://www.warebay.com/bot.html)*]
+Parent="General Crawlers"
+Browser="WBSearchBot"
+
+[Mozilla/4.0 (*Windows NT 5.1*) Lightspeedsystems*]
+Parent="General Crawlers"
+Browser="Lightspeedsystems"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[LSSRocketCrawler/* LightspeedSystems*]
+Parent="General Crawlers"
+Browser="Lightspeedsystems RocketCrawler"
+
+[LSSRocketCrawler/1.0 LightspeedSystems*]
+Parent="General Crawlers"
+Browser="Lightspeedsystems RocketCrawler"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; PaperLiBot/2.1*]
+Parent="General Crawlers"
+Browser="Paper.li Bot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (compatible; PaperLiBot/*]
+Parent="General Crawlers"
+Browser="Paper.li Bot"
+
+[securepoint cf]
+Parent="General Crawlers"
+Browser="Securepoint Content Filter"
+
+[www.integromedb.org/Crawler*]
+Parent="General Crawlers"
+Browser="IntegromeDB Crawler"
+
+[Mozilla/5.0 (compatible; Spiderlytics/1.0*]
+Parent="General Crawlers"
+Browser="Spiderlytics"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Spiderlytics/*]
+Parent="General Crawlers"
+Browser="Spiderlytics"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) KomodiaBot/1.0*]
+Parent="General Crawlers"
+Browser="KomodiaBot"
+Version="1.0"
+MajorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) KomodiaBot/*]
+Parent="General Crawlers"
+Browser="KomodiaBot"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[ScreenerBot Crawler Beta 2.0 *]
+Parent="General Crawlers"
+Browser="ScreenerBot"
+Version="2.0"
+MajorVer=2
+Beta="true"
+
+[ScreenerBot Crawler Beta *]
+Parent="General Crawlers"
+Browser="ScreenerBot"
+Beta="true"
+
+[Mozilla/5.0 (compatible; nbot/2.*]
+Parent="General Crawlers"
+Browser="nbot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; nbot/*]
+Parent="General Crawlers"
+Browser="nbot"
+
+[Mozilla/5.0 (compatible; BLEXBot/1.0;*]
+Parent="General Crawlers"
+Browser="BLEXBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; BLEXBot/*]
+Parent="General Crawlers"
+Browser="BLEXBot"
+
+[Scrapy/0.16*]
+Parent="General Crawlers"
+Browser="Scrapy"
+Version="0.16"
+MinorVer=16
+
+[Scrapy/*]
+Parent="General Crawlers"
+Browser="Scrapy"
+
+[CheckSite Verification Agent*]
+Parent="General Crawlers"
+Browser="CheckSite Verification Agent"
+
+[Experibot_v1*]
+Parent="General Crawlers"
+Browser="Experibot"
+Version="1.0"
+MajorVer=1
+Alpha="true"
+
+[Experibot*]
+Parent="General Crawlers"
+Browser="Experibot"
+Alpha="true"
+
+[GarlikCrawler/1.1*]
+Parent="General Crawlers"
+Browser="GarlikCrawler"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[GarlikCrawler/1.2*]
+Parent="General Crawlers"
+Browser="GarlikCrawler"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[GarlikCrawler/*]
+Parent="General Crawlers"
+Browser="GarlikCrawler"
+
+[Genderanalyzer/1.0*]
+Parent="General Crawlers"
+Browser="Genderanalyzer"
+Version="1.0"
+MajorVer=1
+Beta="true"
+
+[Genderanalyzer/*]
+Parent="General Crawlers"
+Browser="Genderanalyzer"
+Beta="true"
+
+[gooblog/2.0*]
+Parent="General Crawlers"
+Browser="gooblog"
+Version="2.0"
+MajorVer=2
+
+[gooblog/*]
+Parent="General Crawlers"
+Browser="gooblog"
+
+[MetaGeneratorCrawler/1.1*]
+Parent="General Crawlers"
+Browser="MetaGeneratorCrawler"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[MetaGeneratorCrawler/1.3*]
+Parent="General Crawlers"
+Browser="MetaGeneratorCrawler"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+
+[MetaGeneratorCrawler/*]
+Parent="General Crawlers"
+Browser="MetaGeneratorCrawler"
+
+[Mozilla/5.0 (compatible; LoadTimeBot/0.7*]
+Parent="General Crawlers"
+Browser="LoadTimeBot"
+Version="0.7"
+MinorVer=7
+
+[Mozilla/5.0 (compatible; LoadTimeBot/0.8*]
+Parent="General Crawlers"
+Browser="LoadTimeBot"
+Version="0.8"
+MinorVer=8
+
+[Mozilla/5.0 (compatible; LoadTimeBot/0.9*]
+Parent="General Crawlers"
+Browser="LoadTimeBot"
+Version="0.9"
+MinorVer=9
+
+[Mozilla/5.0 (compatible; LoadTimeBot/*]
+Parent="General Crawlers"
+Browser="LoadTimeBot"
+
+[Mozilla/5.0 (compatible; Squzer/*]
+Parent="General Crawlers"
+Browser="Squzer"
+
+[Mozilla/5.0 (lbot/2.6*]
+Parent="General Crawlers"
+Browser="lbot"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[Mozilla/5.0 (lbot/*]
+Parent="General Crawlers"
+Browser="lbot"
+
+[InternetSeer.com]
+Parent="General Crawlers"
+Browser="InternetSeer.com"
+
+[ADmantX Platform Semantic Analyzer*]
+Parent="General Crawlers"
+Browser="ADmantX Platform Semantic Analyzer"
+
+[UnityPlayer/4.3*]
+Parent="General Crawlers"
+Browser="Unity Web Player"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+
+[UnityPlayer/*]
+Parent="General Crawlers"
+Browser="Unity Web Player"
+
+[WeSEE:Search/0.1 (Alpha*]
+Parent="General Crawlers"
+Browser="WeSEE:Search"
+Version="0.1"
+MinorVer=1
+Alpha="true"
+
+[WeSEE:Search/*]
+Parent="General Crawlers"
+Browser="WeSEE:Search"
+
+[WeSEE:Ads/*]
+Parent="General Crawlers"
+Browser="WeSEE:Ads"
+
+[A6-Indexer/1.0*]
+Parent="General Crawlers"
+Browser="A6-Indexer"
+Version="1.0"
+MajorVer=1
+
+[A6-Indexer*]
+Parent="General Crawlers"
+Browser="A6-Indexer"
+
+[Peeplo Screenshot Bot/0.20*]
+Parent="General Crawlers"
+Browser="Peeplo Screenshot Bot"
+Version="0.20"
+MinorVer=20
+
+[Peeplo Screenshot Bot/*]
+Parent="General Crawlers"
+Browser="Peeplo Screenshot Bot"
+
+[CCBot/1.0*]
+Parent="General Crawlers"
+Browser="CCBot"
+Version="1.0"
+MajorVer=1
+
+[CCBot/2.0*]
+Parent="General Crawlers"
+Browser="CCBot"
+Version="2.0"
+MajorVer=2
+
+[CCBot/*]
+Parent="General Crawlers"
+Browser="CCBot"
+
+[visionutils/0.2*]
+Parent="General Crawlers"
+Browser="visionutils"
+Version="0.2"
+MinorVer=2
+
+[visionutils/*]
+Parent="General Crawlers"
+Browser="visionutils"
+
+[Mozilla/5.0 (compatible; IstellaBot/1.18*]
+Parent="General Crawlers"
+Browser="IstellaBot"
+Version="1.18"
+MajorVer=1
+MinorVer=18
+
+[Mozilla/5.0 (compatible; IstellaBot/*]
+Parent="General Crawlers"
+Browser="IstellaBot"
+
+[Mozilla/5.0 (compatible; MSIE or Firefox mutant; not on Windows server;*) Daumoa/4.0*]
+Parent="General Crawlers"
+Browser="Daumoa"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible; MSIE or Firefox mutant; not on Windows server;*) Daumoa/3.0*]
+Parent="General Crawlers"
+Browser="Daumoa"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; MSIE or Firefox mutant; not on Windows server;*) Daumoa/*]
+Parent="General Crawlers"
+Browser="Daumoa"
+
+[Photon/1.0*]
+Parent="General Crawlers"
+Browser="Photon"
+Version="1.0"
+MajorVer=1
+
+[Photon/*]
+Parent="General Crawlers"
+Browser="Photon"
+
+[Mozilla/5.0 (compatible; meanpathbot/1.0*]
+Parent="General Crawlers"
+Browser="meanpathbot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; meanpathbot/*]
+Parent="General Crawlers"
+Browser="meanpathbot"
+
+[Mozilla/5.0 (compatible; Apercite*]
+Parent="General Crawlers"
+Browser="Apercite"
+
+[Mozilla/5.0 (compatible; XML Sitemaps Generator; http://www.xml-sitemaps.com) Gecko XML-Sitemaps/1.0*]
+Parent="General Crawlers"
+Browser="XML Sitemaps Generator"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; XML Sitemaps Generator; http://www.xml-sitemaps.com) Gecko XML-Sitemaps/*]
+Parent="General Crawlers"
+Browser="XML Sitemaps Generator"
+
+[Aboundex/0.2*]
+Parent="General Crawlers"
+Browser="Aboundexbot"
+Version="0.2"
+MinorVer=2
+
+[Aboundex/0.3*]
+Parent="General Crawlers"
+Browser="Aboundexbot"
+Version="0.3"
+MinorVer=3
+
+[Aboundex/*]
+Parent="General Crawlers"
+Browser="Aboundexbot"
+
+[Mozilla/5.0 (compatible; URLAppendBot/1.0*]
+Parent="General Crawlers"
+Browser="URLAppendBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; URLAppendBot/*]
+Parent="General Crawlers"
+Browser="URLAppendBot"
+
+[Mozilla/5.0 (compatible; DomainAppender /1.0*]
+Parent="General Crawlers"
+Browser="DomainAppender Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; DomainAppender /*]
+Parent="General Crawlers"
+Browser="DomainAppender Bot"
+
+[Mozilla/5.0 (compatible; NetSeer crawler/2.0*]
+Parent="General Crawlers"
+Browser="NetSeer Crawler"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; NetSeer crawler/*]
+Parent="General Crawlers"
+Browser="NetSeer Crawler"
+
+[Mozilla/5.0?(compatible;?PiplBot*]
+Parent="General Crawlers"
+Browser="PiplBot"
+
+[Mozilla/5.0 (compatible; Add Catalog/2.1*]
+Parent="General Crawlers"
+Browser="Add Catalog"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (compatible; Add Catalog/*]
+Parent="General Crawlers"
+Browser="Add Catalog"
+
+[Mozilla/5.0 Moreover/5.1*]
+Parent="General Crawlers"
+Browser="Moreover"
+Version="5.1"
+MajorVer=5
+MinorVer=1
+
+[Mozilla/5.0 Moreover/*]
+Parent="General Crawlers"
+Browser="Moreover"
+
+[Mozilla/5.0 (compatible; LinkpadBot/1.06*]
+Parent="General Crawlers"
+Browser="LinkpadBot"
+Version="1.06"
+MajorVer=1
+MinorVer=06
+
+[Mozilla/5.0 (compatible; LinkpadBot/*]
+Parent="General Crawlers"
+Browser="LinkpadBot"
+
+[Mozilla/4.0 (compatible; Blog Search*]
+Parent="General Crawlers"
+Browser="Blog Search"
+
+[YisouSpider]
+Parent="General Crawlers"
+Browser="YisouSpider"
+
+[hivaBot*]
+Parent="General Crawlers"
+Browser="hivaBot"
+
+[Mozilla/5.0 (compatible; fr-crawler/1.1*]
+Parent="General Crawlers"
+Browser="fr-crawler"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; fr-crawler/*]
+Parent="General Crawlers"
+Browser="fr-crawler"
+
+[Mozilla/5.0 (*Linux i686 (x86_64)* rv:1.9.2*) Gecko WebThumb/1.0*]
+Parent="General Crawlers"
+Browser="WebThumb"
+Version="1.0"
+MajorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686 (x86_64)* rv:1.9.2*) Gecko WebThumb/*]
+Parent="General Crawlers"
+Browser="WebThumb"
+Platform="Linux"
+
+[Comodo Spider 1.2*]
+Parent="General Crawlers"
+Browser="Comodo Spider"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[Comodo Spider*]
+Parent="General Crawlers"
+Browser="Comodo Spider"
+
+[Mozilla/4.0 (compatible; MSIE 7.0b; *Windows NT 6.0*; SL Commerce Client v1.0*]
+Parent="General Crawlers"
+Browser="Second Live Commerce Client"
+Version="1.0"
+MajorVer=1
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0b; *Windows NT 6.0*; SL Commerce Client*]
+Parent="General Crawlers"
+Browser="Second Live Commerce Client"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla / reddit pic scraper v0.8*]
+Parent="General Crawlers"
+Browser="reddit pic scraper"
+Version="0.8"
+MinorVer=8
+
+[Mozilla / reddit pic scraper*]
+Parent="General Crawlers"
+Browser="reddit pic scraper"
+
+[Mozilla/5.0 (compatible; GroupHigh/1.0*]
+Parent="General Crawlers"
+Browser="GroupHigh Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; GroupHigh/*]
+Parent="General Crawlers"
+Browser="GroupHigh Bot"
+
+[AntBot/1.0*]
+Parent="General Crawlers"
+Browser="AntBot"
+Version="1.0"
+MajorVer=1
+
+[AntBot/*]
+Parent="General Crawlers"
+Browser="AntBot"
+
+[ZumBot/1.0*]
+Parent="General Crawlers"
+Browser="ZumBot"
+Version="1.0"
+MajorVer=1
+
+[ZumBot/*]
+Parent="General Crawlers"
+Browser="ZumBot"
+
+[Mozilla/5.0 (compatible; ZumBot/1.0*]
+Parent="General Crawlers"
+Browser="ZumBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; ZumBot/*]
+Parent="General Crawlers"
+Browser="ZumBot"
+
+[OpenWebSpider v0.1*]
+Parent="General Crawlers"
+Browser="OpenWebSpider"
+Version="0.1"
+MinorVer=1
+
+[OpenWebSpider*]
+Parent="General Crawlers"
+Browser="OpenWebSpider"
+
+[Mozilla/5.0 (TweetmemeBot/4.0*]
+Parent="General Crawlers"
+Browser="TweetmemeBot"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible; TweetmemeBot/3.0*]
+Parent="General Crawlers"
+Browser="TweetmemeBot"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; TweetmemeBot/*]
+Parent="General Crawlers"
+Browser="TweetmemeBot"
+
+[Mozilla/5.0 (compatible; Blekkobot*]
+Parent="General Crawlers"
+Browser="Blekkobot"
+
+[PagesInventory*]
+Parent="General Crawlers"
+Browser="PagesInventory Bot"
+
+[Mozilla/4.0 (CMS Crawler*]
+Parent="General Crawlers"
+Browser="CMS Crawler"
+
+[MetaHeadersBot*]
+Parent="General Crawlers"
+Browser="MetaHeadersBot"
+
+[Mozilla/5.0 (compatible; Twingly Recon*]
+Parent="General Crawlers"
+Browser="Twingly Recon"
+
+[revolt]
+Parent="General Crawlers"
+Browser="Bot Revolt"
+Platform="Win32"
+Win32="true"
+
+[DomainSCAN]
+Parent="General Crawlers"
+Browser="DomainScan Server Monitoring"
+
+[Mozilla/5.0 (compatible; DomainSCAN/2.0*]
+Parent="General Crawlers"
+Browser="DomainScan Server Monitoring"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; DomainSCAN/*]
+Parent="General Crawlers"
+Browser="DomainScan Server Monitoring"
+
+[Mozilla/5.0 (compatible; AOLbot/4.0*]
+Parent="General Crawlers"
+Browser="AOLbot"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible; AOLbot/*]
+Parent="General Crawlers"
+Browser="AOLbot"
+
+[Proxy Gear Pro/2.1 (*Windows NT 6.1*)*]
+Parent="General Crawlers"
+Browser="Proxy Gear Pro"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Proxy Gear Pro/* (*Windows NT 6.1*)*]
+Parent="General Crawlers"
+Browser="Proxy Gear Pro"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (compatible; WebThumbnail/3.*]
+Parent="General Crawlers"
+Browser="Website Thumbnail Generator"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible; WebThumbnail/*]
+Parent="General Crawlers"
+Browser="Website Thumbnail Generator"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Webglance/0.1*]
+Parent="General Crawlers"
+Browser="Web Glance"
+Version="0.1"
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) *Webglance/*]
+Parent="General Crawlers"
+Browser="Web Glance"
+Platform="Linux"
+
+[CRAZYWEBCRAWLER 0.9*]
+Parent="General Crawlers"
+Browser="Crazywebcrawler"
+Version="0.9"
+MinorVer=9
+
+[CRAZYWEBCRAWLER*]
+Parent="General Crawlers"
+Browser="Crazywebcrawler"
+
+[Mozilla/5.0 (compatible; 200PleaseBot/1.0*]
+Parent="General Crawlers"
+Browser="200PleaseBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; 200PleaseBot/*]
+Parent="General Crawlers"
+Browser="200PleaseBot"
+
+[Mozilla/5.0 (compatible; Abonti/0.91*]
+Parent="General Crawlers"
+Browser="Abonti WebSearch"
+Version="0.91"
+MinorVer=91
+
+[Mozilla/5.0 (compatible; Abonti/0.92*]
+Parent="General Crawlers"
+Browser="Abonti WebSearch"
+Version="0.92"
+MinorVer=92
+
+[Mozilla/5.0 (compatible; Abonti/*]
+Parent="General Crawlers"
+Browser="Abonti WebSearch"
+
+[GG PeekBot 1.0*]
+Parent="General Crawlers"
+Browser="GG PeekBot"
+Version="1.0"
+MajorVer=1
+
+[GG PeekBot 2.0*]
+Parent="General Crawlers"
+Browser="GG PeekBot"
+Version="2.0"
+MajorVer=2
+
+[GG PeekBot *]
+Parent="General Crawlers"
+Browser="GG PeekBot"
+
+[NetzCheckBot/1.0*]
+Parent="General Crawlers"
+Browser="NetzCheckBot"
+Version="1.0"
+MajorVer=1
+
+[NetzCheckBot/*]
+Parent="General Crawlers"
+Browser="NetzCheckBot"
+
+[Mozilla/5.0 (compatible; SMTBot/1.0*]
+Parent="General Crawlers"
+Browser="SMTBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; SMTBot/*]
+Parent="General Crawlers"
+Browser="SMTBot"
+
+[Mozilla/5.0 (compatible; ca-crawler/1.0*]
+Parent="General Crawlers"
+Browser="ca-crawler"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; ca-crawler/*]
+Parent="General Crawlers"
+Browser="ca-crawler"
+
+[Mozilla/5.0 (compatible; publiclibraryarchive.org/1.0*]
+Parent="General Crawlers"
+Browser="publiclibraryarchive Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; publiclibraryarchive.org/*]
+Parent="General Crawlers"
+Browser="publiclibraryarchive Bot"
+
+[BacklinkCrawler*]
+Parent="General Crawlers"
+Browser="BacklinkCrawler"
+
+[ThumbnailAgent]
+Parent="General Crawlers"
+Browser="ThumbnailAgent"
+
+[Mozilla/5.0 (compatible; SoftListBot/2.2*]
+Parent="General Crawlers"
+Browser="SoftListBot"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+
+[Mozilla/5.0 (compatible; SoftListBot/*]
+Parent="General Crawlers"
+Browser="SoftListBot"
+
+[LinkStats Bot]
+Parent="General Crawlers"
+Browser="LinkStats Bot"
+
+[Mozilla/5.0 (compatible; sReleaseBot/6.1*]
+Parent="General Crawlers"
+Browser="sReleaseBot"
+Version="6.1"
+MajorVer=6
+MinorVer=1
+
+[Mozilla/5.0 (compatible; sReleaseBot/*]
+Parent="General Crawlers"
+Browser="sReleaseBot"
+
+[ThumbSniper *]
+Parent="General Crawlers"
+Browser="ThumbSniper"
+
+[stq_bot *]
+Parent="General Crawlers"
+Browser="Searchteq Bot"
+
+[SNK Screenshot Bot/0.20*]
+Parent="General Crawlers"
+Browser="Save n Keep Screenshot Bot"
+
+[SNK Screenshot Bot/*]
+Parent="General Crawlers"
+Browser="Save n Keep Screenshot Bot"
+
+[Phantom.js bot*]
+Parent="General Crawlers"
+Browser="Phantom.js bot"
+
+[Mozilla/5.0 (compatible; Optimizer)*]
+Parent="General Crawlers"
+Browser="Optimizer Bot"
+
+[BuiBui-Bot/1.0*]
+Parent="General Crawlers"
+Browser="BuiBui-Bot"
+Version="1.0"
+MajorVer=1
+
+[BuiBui-Bot/*]
+Parent="General Crawlers"
+Browser="BuiBui-Bot"
+
+[ImplisenseBot 1.0*]
+Parent="General Crawlers"
+Browser="ImplisenseBot"
+Version="1.0"
+MajorVer=1
+
+[ImplisenseBot *]
+Parent="General Crawlers"
+Browser="ImplisenseBot"
+
+[Mozilla/5.0 (compatible; AboutUsBot/*]
+Parent="General Crawlers"
+Browser="AboutUs Bot"
+
+[Mozilla/5.0 (compatible; AboutUsBot Johnny5/2.0*]
+Parent="General Crawlers"
+Browser="AboutUs Bot Johnny5"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; AboutUsBot Johnny5/*]
+Parent="General Crawlers"
+Browser="AboutUs Bot Johnny5"
+
+[AboutUsBot/* (Website Analysis*]
+Parent="General Crawlers"
+Browser="AboutUs Bot"
+
+[Bot.AraTurka.com/*]
+Parent="General Crawlers"
+Browser="Bot.AraTurka.com"
+
+[http_requester/0.1*]
+Parent="General Crawlers"
+Browser="http_requester"
+Version="0.1"
+MinorVer=1
+
+[http_requester/*]
+Parent="General Crawlers"
+Browser="http_requester"
+
+[*java*]
+Parent="General Crawlers"
+
+[HRCrawler/2.0*]
+Parent="General Crawlers"
+Browser="HRCrawler"
+Version="2.0"
+MajorVer=2
+
+[HRCrawler/*]
+Parent="General Crawlers"
+Browser="HRCrawler"
+
+[isc header collector handlers*]
+Parent="General Crawlers"
+Browser="isc header collector handlers"
+
+[Cliqzbot/0.1*]
+Parent="General Crawlers"
+Browser="Cliqzbot"
+Version="0.1"
+MinorVer=1
+
+[Cliqzbot/*]
+Parent="General Crawlers"
+Browser="Cliqzbot"
+
+[Forum Poster V3*]
+Parent="General Crawlers"
+Browser="Forum Poster"
+Version="3.0"
+MajorVer=3
+
+[Forum Poster*]
+Parent="General Crawlers"
+Browser="Forum Poster"
+
+[Mozilla/5.0 (compatible; WebMasterAid/1.0*]
+Parent="General Crawlers"
+Browser="WebMasterAid"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; WebMasterAid/*]
+Parent="General Crawlers"
+Browser="WebMasterAid"
+
+[Mozilla/5.0 (compatible; Muenster University of Applied Sciences; *itsscan*]
+Parent="General Crawlers"
+Browser="itsscan"
+
+[MetaURI API/2.0*]
+Parent="General Crawlers"
+Browser="MetaURI Bot"
+Version="2.0"
+MajorVer=2
+
+[MetaURI API*]
+Parent="General Crawlers"
+Browser="MetaURI Bot"
+
+[IPv4Scan*]
+Parent="General Crawlers"
+Browser="IPv4Scan"
+
+[Zookabot/2.4*]
+Parent="General Crawlers"
+Browser="Zookabot"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+
+[Zookabot/*]
+Parent="General Crawlers"
+Browser="Zookabot"
+
+[Mozilla/5.0 (compatible; discoverybot/2.0*]
+Parent="General Crawlers"
+Browser="discoverybot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; discoverybot/*]
+Parent="General Crawlers"
+Browser="discoverybot"
+
+[Mozilla/5.0 (compatible; AskPeterBot*]
+Parent="General Crawlers"
+Browser="AskPeterBot"
+
+[RED/1*]
+Parent="General Crawlers"
+Browser="redbot"
+Version="1.0"
+MajorVer=1
+
+[RED/*]
+Parent="General Crawlers"
+Browser="redbot"
+
+[BUbiNG*]
+Parent="General Crawlers"
+Browser="BUbiNG Bot"
+
+[Mozilla/5.0 (X11; compatible; semantic-visions.com crawler; HTTPClient 3.1*]
+Parent="General Crawlers"
+Browser="semantic-visions.com crawler"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (X11; compatible; semantic-visions.com crawler; HTTPClient*]
+Parent="General Crawlers"
+Browser="semantic-visions.com crawler"
+
+[JoobleBot*]
+Parent="General Crawlers"
+Browser="JoobleBot"
+
+[Mozilla/5.0 (compatible; MixrankBot*]
+Parent="General Crawlers"
+Browser="MixrankBot"
+
+[Mozilla/5.0 (compatible; memoryBot/1.20*]
+Parent="General Crawlers"
+Browser="memoryBot"
+Version="1.20"
+MajorVer=1
+MinorVer=20
+
+[Mozilla/5.0 (compatible; memoryBot/*]
+Parent="General Crawlers"
+Browser="memoryBot"
+
+[Icarus6j*]
+Parent="General Crawlers"
+Browser="Icarus6j"
+
+[wsr-agent/1.0*]
+Parent="General Crawlers"
+Browser="wsr-agent"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; waybackarchive.org/1.0*]
+Parent="General Crawlers"
+Browser="Wayback Archive Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; waybackarchive.org/*]
+Parent="General Crawlers"
+Browser="Wayback Archive Bot"
+
+[Mozilla crawl/5.0*]
+Parent="General Crawlers"
+Browser="Mozilla Crawler"
+Version="5.0"
+MajorVer=5
+
+[Mozilla crawl/*]
+Parent="General Crawlers"
+Browser="Mozilla Crawler"
+
+[RamblerMail/6.0*]
+Parent="General Crawlers"
+Browser="RamblerMail Bot"
+Version="6.0"
+MajorVer=6
+
+[RamblerMail/*]
+Parent="General Crawlers"
+Browser="RamblerMail Bot"
+
+[wsr-agent/*]
+Parent="General Crawlers"
+Browser="wsr-agent"
+
+[Mozilla/5.0 (URLfilterDB-crawler/1.1)*]
+Parent="General Crawlers"
+Browser="URLfilterDB Crawler"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (URLfilterDB-crawler/*]
+Parent="General Crawlers"
+Browser="URLfilterDB Crawler"
+
+[Mozilla/5.0 (compatible; OpenHoseBot/2.1*]
+Parent="General Crawlers"
+Browser="OpenHoseBot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (compatible; OpenHoseBot/*]
+Parent="General Crawlers"
+Browser="OpenHoseBot"
+
+[Mozilla/5.0 (compatible; DomainSigmaCrawler/0.1*]
+Parent="General Crawlers"
+Browser="DomainSigmaCrawler"
+Version="0.1"
+MinorVer=1
+
+[Mozilla/5.0 (compatible; DomainSigmaCrawler/*]
+Parent="General Crawlers"
+Browser="DomainSigmaCrawler"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) profiller Safari/*]
+Parent="General Crawlers"
+Browser="profiller"
+Platform="CentOS"
+
+[BigBozz/BigBozz-2.2*]
+Parent="General Crawlers"
+Browser="BigBozz - Financial Search"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+
+[BigBozz/BigBozz*]
+Parent="General Crawlers"
+Browser="BigBozz - Financial Search"
+
+[ECCP/1.0*]
+Parent="General Crawlers"
+Browser="ECCP"
+Version="1.0"
+MajorVer=1
+
+[ECCP/*]
+Parent="General Crawlers"
+Browser="ECCP"
+
+[WebIndex*]
+Parent="General Crawlers"
+Browser="WebIndex"
+
+[ArchiveTeam ArchiveBot/*]
+Parent="General Crawlers"
+Browser="ArchiveBot"
+
+[Mozilla/5.0 (compatible; Crawler/0.9*]
+Parent="General Crawlers"
+Browser="Crawler"
+Version="0.9"
+MinorVer=9
+
+[Mozilla/5.0 (compatible; Crawler/*]
+Parent="General Crawlers"
+Browser="Crawler"
+
+[Amazon CloudFront*]
+Parent="General Crawlers"
+Browser="Amazon CloudFront"
+
+[Arachnida Web Crawler*]
+Parent="General Crawlers"
+Browser="Arachnida Web Crawler"
+
+[bandscraper*]
+Parent="General Crawlers"
+Browser="bandscraper"
+
+[bot*]
+Parent="General Crawlers"
+Browser="bot"
+
+[cars-app-browser*]
+Parent="General Crawlers"
+Browser="cars-app-browser"
+
+[HggH PhantomJS Screenshoter*]
+Parent="General Crawlers"
+Browser="HggH Screenshot System with PhantomJS"
+
+[IC OpenGraph Crawler*]
+Parent="General Crawlers"
+Browser="IBM Connections"
+
+[ICC-Crawler/2.0*]
+Parent="General Crawlers"
+Browser="ICC-Crawler"
+Version="2.0"
+MajorVer=2
+
+[ICC-Crawler/*]
+Parent="General Crawlers"
+Browser="ICC-Crawler"
+
+[InAGist URL Resolver*]
+Parent="General Crawlers"
+Browser="InAGist URL Resolver"
+
+[Jeode/1.*]
+Parent="General Crawlers"
+Browser="Jeode"
+Version="1.0"
+MajorVer=1
+
+[Jeode/*]
+Parent="General Crawlers"
+Browser="Jeode"
+
+[kraken/0.6*]
+Parent="General Crawlers"
+Browser="krakenjs"
+Version="0.6"
+MinorVer=6
+
+[kraken/*]
+Parent="General Crawlers"
+Browser="krakenjs"
+
+[LivelapBot/0.2*]
+Parent="General Crawlers"
+Browser="Livelap Crawler"
+Version="0.2"
+MinorVer=2
+
+[LivelapBot/0.1*]
+Parent="General Crawlers"
+Browser="Livelap Crawler"
+Version="0.1"
+MinorVer=1
+
+[LivelapBot/*]
+Parent="General Crawlers"
+Browser="Livelap Crawler"
+
+[Locubot*]
+Parent="General Crawlers"
+Browser="Locubot"
+
+[MailChimp.com*]
+Parent="General Crawlers"
+Browser="MailChimp.com"
+
+[MixBot*]
+Parent="General Crawlers"
+Browser="MixBot"
+
+[Mozilla/4.0 (compatible; focuseekbot*]
+Parent="General Crawlers"
+Browser="focuseekbot"
+
+[Mozilla,BuSecurityProject*]
+Parent="General Crawlers"
+Browser="BuSecurityProject"
+
+[Mozilla/5.0 (compatible; kgbody/2.0*]
+Parent="General Crawlers"
+Browser="kgbody"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; kgbody/*]
+Parent="General Crawlers"
+Browser="kgbody"
+
+[Mozilla/5.0 (compatible; kulturarw3*]
+Parent="General Crawlers"
+Browser="kulturarw3"
+
+[Mozilla/5.0 (compatible; MerchantCentricBot/1.0*]
+Parent="General Crawlers"
+Browser="MerchantCentricBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; MerchantCentricBot/*]
+Parent="General Crawlers"
+Browser="MerchantCentricBot"
+
+[Mozilla/5.0 (compatible*; MarketwireBot*]
+Parent="General Crawlers"
+Browser="MarketwireBot"
+
+[Mozilla/5.0 (compatible; Nett.io bot/1.0*]
+Parent="General Crawlers"
+Browser="Nett.io bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Nett.io bot/*]
+Parent="General Crawlers"
+Browser="Nett.io bot"
+
+[Mozilla/5.0 (compatible;acapbot/0.1*]
+Parent="General Crawlers"
+Browser="acapbot"
+Version="0.1"
+MinorVer=1
+
+[Mozilla/5.0 (compatible;acapbot/*]
+Parent="General Crawlers"
+Browser="acapbot"
+
+[PageFreezer*]
+Parent="General Crawlers"
+Browser="PageFreezer"
+
+[restify/2.6* (*) node/*]
+Parent="General Crawlers"
+Browser="restify"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[restify/* (*) node/*]
+Parent="General Crawlers"
+Browser="restify"
+
+[ShowyouBot*]
+Parent="General Crawlers"
+Browser="ShowyouBot"
+
+[ltx71 *]
+Parent="General Crawlers"
+Browser="ltx71 Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Diffbot
+
+[Diffbot]
+Parent="DefaultProperties"
+Comment="Diffbot"
+Browser="Diffbot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Diffbot/0.1*]
+Parent="Diffbot"
+Version="0.1"
+MinorVer=1
+
+[Mozilla/5.0 (compatible; Diffbot/*]
+Parent="Diffbot"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko; +http://www.diffbot.com) Chrome/* Safari/*]
+Parent="Diffbot"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iVia Project
+
+[iVia Project]
+Parent="DefaultProperties"
+Comment="iVia Project"
+Browser="iVia Project"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[DataFountains/DMOZ Downloader*]
+Parent="iVia Project"
+Browser="DataFountains/DMOZ Downloader"
+
+[DataFountains/DMOZ Feature Vector Corpus Creator*]
+Parent="iVia Project"
+Browser="DataFountains/DMOZ Feature Vector Corpus"
+
+[Crawly]
+Parent="General Crawlers"
+Comment="Crawly"
+Browser="Crawly"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Crawly/1.*; +http://*/crawler.html)]
+Parent="Crawly"
+Version="1.0"
+MajorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Data Mining
+
+[Data Mining]
+Parent="DefaultProperties"
+Comment="Data Mining"
+Browser="Data Mining"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; imrbot/1.10*]
+Parent="Data Mining"
+Browser="Mignify Bot"
+Version="1.10"
+MajorVer=1
+MinorVer=10
+
+[Mozilla/5.0 (compatible; imrbot/*]
+Parent="Data Mining"
+Browser="Mignify Bot"
+
+[Mozilla/5.0 (compatible; LucidWorks*]
+Parent="Data Mining"
+Browser="Lucidworks Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jayde Online
+
+[Jayde Online]
+Parent="DefaultProperties"
+Comment="Jayde Online"
+Browser="Jayde Online"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[ExactSeek Crawler/*]
+Parent="Jayde Online"
+Browser="ExactSeek Crawler"
+
+[exactseek-pagereaper-* (crawler@exactseek.com)]
+Parent="Jayde Online"
+Browser="exactseek-pagereaper"
+
+[exactseek.com]
+Parent="Jayde Online"
+Browser="exactseek.com"
+
+[Jayde Crawler*]
+Parent="Jayde Online"
+Browser="Jayde Crawler"
+
+[Cynthia]
+Parent="General Crawlers"
+Comment="General Crawlers"
+Browser="Cynthia"
+Crawler="true"
+
+[Cynthia 1.*]
+Parent="Cynthia"
+Version="1.0"
+MajorVer=1
+
+[Cynthia *]
+Parent="Cynthia"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lycos
+
+[Lycos]
+Parent="DefaultProperties"
+Comment="Lycos"
+Browser="Lycos"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Lycos*]
+Parent="Lycos"
+
+[Lycos-Proxy]
+Parent="Lycos"
+Browser="Lycos-Proxy"
+
+[Lycos-Spider_(modspider)]
+Parent="Lycos"
+Browser="Lycos-Spider_(modspider)"
+
+[Lycos-Spider_(T-Rex)]
+Parent="Lycos"
+Browser="Lycos-Spider_(T-Rex)"
+
+[DCPbot]
+Parent="General Crawlers"
+Comment="General Crawlers"
+Browser="DCPbot"
+Crawler="true"
+
+[DCPbot/1.2*]
+Parent="DCPbot"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[DCPbot*]
+Parent="DCPbot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Snap
+
+[Snap]
+Parent="DefaultProperties"
+Comment="Snap"
+Browser="Snap"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (SnapPreviewBot) Gecko/* Firefox/*]
+Parent="Snap"
+Browser="SnapPreviewBot"
+
+[Snapbot/*]
+Parent="Snap"
+Browser="Snapbot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Zollard Worm
+
+[Zollard Worm]
+Parent="DefaultProperties"
+Comment="Zollard Worm"
+Browser="Zollard Worm"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Zollard; Linux)]
+Parent="Zollard Worm"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou
+
+[Sogou]
+Parent="DefaultProperties"
+Comment="Sogou"
+Browser="Sogou"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[shaboyi spider]
+Parent="Sogou"
+Browser="Sogou/Shaboyi Spider"
+
+[Sogou develop spider/*]
+Parent="Sogou"
+Browser="Sogou Develop Spider"
+
+[Sogou head spider*]
+Parent="Sogou"
+Browser="Sogou Head Spider"
+
+[sogou js robot(*)]
+Parent="Sogou"
+
+[Sogou Orion spider/*]
+Parent="Sogou"
+Browser="Sogou Orion spider"
+
+[Sogou Pic Agent]
+Parent="Sogou"
+Browser="Sogou/Image Crawler"
+
+[Sogou Pic Spider/*]
+Parent="Sogou"
+Browser="Sogou Pic Spider"
+
+[Sogou Push Spider/*]
+Parent="Sogou"
+Browser="Sogou Push Spider"
+
+[sogou spider]
+Parent="Sogou"
+Browser="Sogou/Spider"
+
+[Sogou-Test-Spider/*]
+Parent="Sogou"
+Browser="Sogou-Test-Spider"
+
+[Sogou Pic Spider*]
+Parent="Sogou"
+Browser="Sogou Pic Spider"
+
+[Sogou Push Spider*]
+Parent="Sogou"
+Browser="Sogou Push Spider"
+
+[sogou spider*]
+Parent="Sogou"
+Browser="Sogou/Spider"
+
+[Sogou web spider/4.0*]
+Parent="Sogou"
+Browser="Sogou Web Spider"
+Version="4.0"
+MajorVer=4
+
+[Sogou web spider*]
+Parent="Sogou"
+Browser="Sogou Web Spider"
+
+[New-Sogou-Spider/1.*]
+Parent="Sogou"
+Browser="Sogou Spider"
+Version="1.0"
+MajorVer=1
+
+[New-Sogou-Spider/*]
+Parent="Sogou"
+Browser="Sogou Spider"
+
+[DomainCrawler]
+Parent="General Crawlers"
+Comment="DomainCrawler"
+Browser="DomainCrawler"
+Crawler="true"
+
+[DomainCrawler/1.*]
+Parent="DomainCrawler"
+Version="1.0"
+MajorVer=1
+
+[DomainCrawler/2.*]
+Parent="DomainCrawler"
+Version="2.0"
+MajorVer=2
+
+[DomainCrawler/*]
+Parent="DomainCrawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YodaoBot
+
+[YodaoBot]
+Parent="DefaultProperties"
+Comment="YodaoBot"
+Browser="YodaoBot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; YodaoBot/1.*)]
+Parent="YodaoBot"
+
+[Mozilla/5.0 (compatible;YodaoBot-Image/1.*)]
+Parent="YodaoBot"
+Browser="YodaoBot-Image"
+
+[WAP_Browser/5.0 (compatible; YodaoBot/1.*)]
+Parent="YodaoBot"
+
+[YodaoBot/1.* (*)]
+Parent="YodaoBot"
+
+[Best Whois (http://www.bestwhois.net/)]
+Parent="YodaoBot"
+Browser="Best Whois"
+
+[DNSGroup/*]
+Parent="YodaoBot"
+Browser="DNS Group Crawler"
+
+[TouchStone]
+Parent="YodaoBot"
+Browser="TouchStone"
+isSyndicationReader="true"
+
+[DomainsBotBot]
+Parent="General Crawlers"
+Comment="DomainsBotBot"
+Browser="DomainsBotBot"
+Crawler="true"
+
+[DomainsBotBot/1.*]
+Parent="DomainsBotBot"
+Version="1.0"
+MajorVer=1
+
+[DomainsBotBot/*]
+Parent="DomainsBotBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WebmasterCoffee
+
+[WebmasterCoffee]
+Parent="DefaultProperties"
+Comment="WebmasterCoffee"
+Browser="WebmasterCoffee"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; WebmasterCoffee/0.7; +http://webmastercoffee.com/about)]
+Parent="WebmasterCoffee"
+Version="0.7"
+MinorVer=7
+
+[Mozilla/5.0 (compatible; WebmasterCoffee/*; +http://webmastercoffee.com/about)]
+Parent="WebmasterCoffee"
+
+[DomainsBot]
+Parent="General Crawlers"
+Comment="DomainsBot"
+Browser="DomainsBot"
+Crawler="true"
+
+[domainsbot *]
+Parent="DomainsBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; sp auditbot
+
+[sp auditbot]
+Parent="DefaultProperties"
+Comment="sp auditbot"
+Browser="SEOprofiler AuditBot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible*sp_auditbot/4.0*]
+Parent="sp auditbot"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible*sp_auditbot/4.1*]
+Parent="sp auditbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*sp_auditbot/4.2*]
+Parent="sp auditbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*sp_auditbot/4.3*]
+Parent="sp auditbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*sp_auditbot/4.4*]
+Parent="sp auditbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*sp_auditbot/*]
+Parent="sp auditbot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; spbot
+
+[spbot]
+Parent="DefaultProperties"
+Comment="spbot"
+Browser="SEOprofiler"
+Crawler="true"
+
+[Mozilla/5.0 (compatible*spbot/1.0*]
+Parent="spbot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible*spbot/1.1*]
+Parent="spbot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/1.2*]
+Parent="spbot"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (compatible*spbot/2.0*]
+Parent="spbot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible*spbot/2.1*]
+Parent="spbot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/3.0*]
+Parent="spbot"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible*spbot/3.1*]
+Parent="spbot"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/4.0*]
+Parent="spbot"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (compatible*spbot/4.1*]
+Parent="spbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/4.2*]
+Parent="spbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/4.3*]
+Parent="spbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/4.4*]
+Parent="spbot"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[Mozilla/5.0 (compatible*spbot/*]
+Parent="spbot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sistrix Crawler
+
+[Sistrix Crawler]
+Parent="DefaultProperties"
+Comment="Sistrix Crawler"
+Browser="Sistrix Crawler"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; SISTRIX Crawler*)]
+Parent="Sistrix Crawler"
+
+[Mozilla/5.0 (compatible; 007ac9 Crawler*]
+Parent="Sistrix Crawler"
+Browser="007AC9 Crawler"
+
+[Sistrix*]
+Parent="Sistrix Crawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 1.90
+
+[Screaming Frog SEO Spider 1.90]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 1.90"
+Browser="Screaming Frog SEO Spider"
+Version="1.90"
+MajorVer=1
+MinorVer=90
+Crawler="true"
+
+[Screaming Frog SEO Spider/1.90]
+Parent="Screaming Frog SEO Spider 1.90"
+
+[Screaming Frog SEO Spider/1,90]
+Parent="Screaming Frog SEO Spider 1.90"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.00
+
+[Screaming Frog SEO Spider 2.00]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.00"
+Browser="Screaming Frog SEO Spider"
+Version="2.00"
+MajorVer=2
+MinorVer=00
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.00]
+Parent="Screaming Frog SEO Spider 2.00"
+
+[Screaming Frog SEO Spider/2,00]
+Parent="Screaming Frog SEO Spider 2.00"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.01
+
+[Screaming Frog SEO Spider 2.01]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.01"
+Browser="Screaming Frog SEO Spider"
+Version="2.01"
+MajorVer=2
+MinorVer=01
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.01]
+Parent="Screaming Frog SEO Spider 2.01"
+
+[Screaming Frog SEO Spider/2,01]
+Parent="Screaming Frog SEO Spider 2.01"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.11
+
+[Screaming Frog SEO Spider 2.11]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.11"
+Browser="Screaming Frog SEO Spider"
+Version="2.11"
+MajorVer=2
+MinorVer=11
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.11]
+Parent="Screaming Frog SEO Spider 2.11"
+
+[Screaming Frog SEO Spider/2,11]
+Parent="Screaming Frog SEO Spider 2.11"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.20
+
+[Screaming Frog SEO Spider 2.20]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.20"
+Browser="Screaming Frog SEO Spider"
+Version="2.20"
+MajorVer=2
+MinorVer=20
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.20]
+Parent="Screaming Frog SEO Spider 2.20"
+
+[Screaming Frog SEO Spider/2,20]
+Parent="Screaming Frog SEO Spider 2.20"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.21
+
+[Screaming Frog SEO Spider 2.21]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.21"
+Browser="Screaming Frog SEO Spider"
+Version="2.21"
+MajorVer=2
+MinorVer=21
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.21]
+Parent="Screaming Frog SEO Spider 2.21"
+
+[Screaming Frog SEO Spider/2,21]
+Parent="Screaming Frog SEO Spider 2.21"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.22
+
+[Screaming Frog SEO Spider 2.22]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.22"
+Browser="Screaming Frog SEO Spider"
+Version="2.22"
+MajorVer=2
+MinorVer=22
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.22]
+Parent="Screaming Frog SEO Spider 2.22"
+
+[Screaming Frog SEO Spider/2,22]
+Parent="Screaming Frog SEO Spider 2.22"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.30
+
+[Screaming Frog SEO Spider 2.30]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.30"
+Browser="Screaming Frog SEO Spider"
+Version="2.30"
+MajorVer=2
+MinorVer=30
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.30]
+Parent="Screaming Frog SEO Spider 2.30"
+
+[Screaming Frog SEO Spider/2,30]
+Parent="Screaming Frog SEO Spider 2.30"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.40
+
+[Screaming Frog SEO Spider 2.40]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.40"
+Browser="Screaming Frog SEO Spider"
+Version="2.40"
+MajorVer=2
+MinorVer=40
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.40]
+Parent="Screaming Frog SEO Spider 2.40"
+
+[Screaming Frog SEO Spider/2,40]
+Parent="Screaming Frog SEO Spider 2.40"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Screaming Frog SEO Spider 2.50
+
+[Screaming Frog SEO Spider 2.50]
+Parent="DefaultProperties"
+Comment="Screaming Frog SEO Spider 2.50"
+Browser="Screaming Frog SEO Spider"
+Version="2.50"
+MajorVer=2
+MinorVer=50
+Crawler="true"
+
+[Screaming Frog SEO Spider/2.50]
+Parent="Screaming Frog SEO Spider 2.50"
+
+[Screaming Frog SEO Spider/2,50]
+Parent="Screaming Frog SEO Spider 2.50"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; XoviBot
+
+[XoviBot]
+Parent="DefaultProperties"
+Comment="XoviBot"
+Browser="XoviBot"
+Crawler="true"
+
+[XoviBot/1.0*]
+Parent="XoviBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; XoviBot/1.0*]
+Parent="XoviBot"
+Version="1.0"
+MajorVer=1
+
+[XoviBot/2.0*]
+Parent="XoviBot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; XoviBot/2.0*]
+Parent="XoviBot"
+Version="2.0"
+MajorVer=2
+
+[XoviBot/*]
+Parent="XoviBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEOdiver Bot
+
+[SEOdiver Bot]
+Parent="DefaultProperties"
+Comment="SEOdiver Bot"
+Browser="SEOdiver Bot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; SEOdiver/1.0*]
+Parent="SEOdiver Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; SEOdiver/*]
+Parent="SEOdiver Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEO & Analytics
+
+[SEO & Analytics]
+Parent="DefaultProperties"
+Comment="SEO & Analytics"
+Browser="SEO & Analytics"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; SEODat/0.* http://crawler.seodat.com)]
+Parent="SEO & Analytics"
+Browser="SEODat"
+
+[Mozilla/5.0 (compatible; SearchmetricsBot; http://www.searchmetrics.com/en/searchmetrics-bot/)]
+Parent="SEO & Analytics"
+Browser="SearchmetricsBot"
+
+[Mozilla/5.0 (compatible; SEOkicks-Robot*]
+Parent="SEO & Analytics"
+Browser="SEOkicks Robot"
+
+[Mozilla/5.0 (compatible; Alexabot/1.0; *]
+Parent="SEO & Analytics"
+Browser="Alexabot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Alexabot/*]
+Parent="SEO & Analytics"
+Browser="Alexabot"
+
+[WebTarantula.com Crawler*]
+Parent="SEO & Analytics"
+Browser="WebTarantula"
+
+[Mozilla/5.0 (compatible; Scrubby/3.2*]
+Parent="SEO & Analytics"
+Browser="Scrubby"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[Mozilla/5.0 (compatible; Scrubby/*]
+Parent="SEO & Analytics"
+Browser="Scrubby"
+
+[Mozilla/5.0 (compatible; SiteExplorer/1.0b;*]
+Parent="SEO & Analytics"
+Browser="SiteExplorer"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Beta="true"
+
+[Mozilla/5.0 (compatible; SiteExplorer/*]
+Parent="SEO & Analytics"
+Browser="SiteExplorer"
+
+[Mozilla/5.0 (compatible; SemrushBot/0.96*]
+Parent="SEO & Analytics"
+Browser="SemrushBot"
+Version="0.96"
+MinorVer=96
+
+[Mozilla/5.0 (compatible; SemrushBot/0.97*]
+Parent="SEO & Analytics"
+Browser="SemrushBot"
+Version="0.97"
+MinorVer=97
+
+[Mozilla/5.0 (compatible; SemrushBot/*]
+Parent="SEO & Analytics"
+Browser="SemrushBot"
+
+[Mozilla/5.0 (compatible; Lipperhey SEO Service*]
+Parent="SEO & Analytics"
+Browser="Lipperhey SEO Service"
+
+[Mozilla/5.0 (compatible; Prlog/1.0*]
+Parent="SEO & Analytics"
+Browser="Prlog"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Prlog/*]
+Parent="SEO & Analytics"
+Browser="Prlog"
+
+[Browsershots]
+Parent="SEO & Analytics"
+Browser="Browsershots"
+
+[Screaming Frog SEO Spider/*]
+Parent="SEO & Analytics"
+Browser="Screaming Frog SEO Spider"
+
+[ssearch_bot (sSearch Crawler*]
+Parent="SEO & Analytics"
+Browser="sSearch Crawler"
+
+[FreeWebMonitoring SiteChecker/0.1*]
+Parent="SEO & Analytics"
+Browser="FreeWebMonitoring SiteChecker"
+Version="0.1"
+MinorVer=1
+
+[FreeWebMonitoring SiteChecker/*]
+Parent="SEO & Analytics"
+Browser="FreeWebMonitoring SiteChecker"
+
+[GIDBot/2.0*]
+Parent="SEO & Analytics"
+Browser="GIDBot"
+Version="2.0"
+MajorVer=2
+
+[GIDBot/*]
+Parent="SEO & Analytics"
+Browser="GIDBot"
+
+[Mozilla/4.0 (vBSEO;*]
+Parent="SEO & Analytics"
+Browser="vBulletin SEO Bot"
+
+[Mozilla/5.0 (compatible; SemanticBot/1.1*]
+Parent="SEO & Analytics"
+Browser="SemanticBot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; SemanticBot/*]
+Parent="SEO & Analytics"
+Browser="SemanticBot"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="FreeBSD"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win95"
+Platform_Version=95
+Win32="true"
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinNT"
+Platform_Version="4.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) TagInspector/* Chrome/* Safari/*]
+Parent="SEO & Analytics"
+Browser="TagInspector Bot"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[bot-pge.chlooe.com/1.0*]
+Parent="SEO & Analytics"
+Browser="chlooe Bot"
+Version="1.0"
+MajorVer=1
+
+[bot-pge.chlooe.com/*]
+Parent="SEO & Analytics"
+Browser="chlooe Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Search Engines
+
+[Search Engines]
+Parent="DefaultProperties"
+Comment="Search Engines"
+Browser="Search Engines"
+Crawler="true"
+
+[*FDSE robot*]
+Parent="Search Engines"
+Browser="FDSE Robot"
+
+[*Fluffy the spider*]
+Parent="Search Engines"
+Browser="SearchHippo"
+
+[Abacho*]
+Parent="Search Engines"
+Browser="Abacho"
+
+[ah-ha.com crawler (crawler@ah-ha.com)]
+Parent="Search Engines"
+Browser="Ah-Ha"
+
+[AIBOT/*]
+Parent="Search Engines"
+Browser="21Seek.Com"
+
+[ALeadSoftbot/*]
+Parent="Search Engines"
+Browser="ALeadSoftbot"
+
+[Amfibibot/*]
+Parent="Search Engines"
+Browser="Amfibi"
+
+[AnswerBus (http://www.answerbus.com/)]
+Parent="Search Engines"
+Browser="AnswerBus"
+
+[antibot-V*]
+Parent="Search Engines"
+Browser="antibot"
+
+[appie*(www.walhello.com)]
+Parent="Search Engines"
+Browser="Walhello"
+
+[ASPSeek/*]
+Parent="Search Engines"
+Browser="ASPSeek"
+
+[Atrax Solutions atraxbot/0.*; http://www.atraxsolutions.com/atraxbot]
+Parent="Search Engines"
+Browser="Atrax Solutions"
+
+[BigCliqueBOT/*]
+Parent="Search Engines"
+Browser="BigClique.com/BigClic.com"
+
+[Blaiz-Bee/*]
+Parent="Search Engines"
+Browser="RawGrunt"
+
+[btbot/*]
+Parent="Search Engines"
+Browser="Bit Torrent Search Engine"
+
+[Busiversebot/v1.0 (http://www.busiverse.com/bot.php)]
+Parent="Search Engines"
+Browser="Busiversebot"
+
+[CatchBot/*; +http://www.catchbot.com]
+Parent="Search Engines"
+Browser="CatchBot"
+Version="1.0"
+MajorVer=1
+
+[CipinetBot (http://www.cipinet.com/bot.html)]
+Parent="Search Engines"
+Browser="CipinetBot"
+
+[Cogentbot/1.?*]
+Parent="Search Engines"
+Browser="Cogentbot"
+
+[compatible; Mozilla 4.0; MSIE 5.5; (SqwidgeBot v1.01 - http://www.sqwidge.com/bot/)]
+Parent="Search Engines"
+Browser="SqwidgeBot"
+
+[cosmos*]
+Parent="Search Engines"
+Browser="Xyleme"
+
+[Deepindex]
+Parent="Search Engines"
+Browser="Deepindex"
+
+[DiamondBot]
+Parent="Search Engines"
+Browser="DiamondBot"
+
+[DuckDuckBot/*; (?http://duckduckgo.com/duckduckbot.html)]
+Parent="Search Engines"
+Browser="DuckDuckBot"
+
+[Dumbot*]
+Parent="Search Engines"
+Browser="Dumbot"
+Version="0.2"
+MinorVer=2
+Beta="true"
+
+[Eule?Robot*]
+Parent="Search Engines"
+Browser="Eule-Robot"
+
+[Faxobot/*]
+Parent="Search Engines"
+Browser="Faxo"
+
+[Filangy/*]
+Parent="Search Engines"
+Browser="Filangy"
+
+[flatlandbot/*]
+Parent="Search Engines"
+Browser="Flatland"
+
+[Fooky.com/ScorpionBot/ScoutOut;*]
+Parent="Search Engines"
+Browser="ScorpionBot"
+
+[FyberSpider*]
+Parent="Search Engines"
+Browser="FyberSpider"
+
+[Gaisbot/*]
+Parent="Search Engines"
+Browser="Gaisbot"
+
+[gazz/*(gazz@nttr.co.jp)]
+Parent="Search Engines"
+Browser="gazz"
+
+[geniebot*]
+Parent="Search Engines"
+Browser="GenieKnows"
+
+[GOFORITBOT (?http://www.goforit.com/about/?)]
+Parent="Search Engines"
+Browser="GoForIt"
+
+[GoGuidesBot/*]
+Parent="Search Engines"
+Browser="GoGuidesBot"
+
+[GroschoBot/*]
+Parent="Search Engines"
+Browser="GroschoBot"
+
+[GurujiBot/1.*]
+Parent="Search Engines"
+Browser="GurujiBot"
+
+[HenryTheMiragoRobot*]
+Parent="Search Engines"
+Browser="Mirago"
+
+[HolmesBot (http://holmes.ge)]
+Parent="Search Engines"
+Browser="HolmesBot"
+
+[Hotzonu/*]
+Parent="Search Engines"
+Browser="Hotzonu"
+
+[HyperEstraier/*]
+Parent="Search Engines"
+Browser="HyperEstraier"
+
+[i1searchbot/*]
+Parent="Search Engines"
+Browser="i1searchbot"
+
+[IIITBOT/1.*]
+Parent="Search Engines"
+Browser="Indian Language Web Search Engine"
+
+[Iltrovatore-?etaccio/*]
+Parent="Search Engines"
+Browser="Iltrovatore-Setaccio"
+
+[InfociousBot (?http://corp.infocious.com/tech_crawler.php)]
+Parent="Search Engines"
+Browser="InfociousBot"
+
+[Infoseek SideWinder/*]
+Parent="Search Engines"
+Browser="Infoseek"
+
+[iSEEKbot/*]
+Parent="Search Engines"
+Browser="iSEEKbot"
+
+[Knight/0.? (Zook Knight; http://knight.zook.in/; knight@zook.in)]
+Parent="Search Engines"
+Browser="Knight"
+
+[Kolinka Forum Search (www.kolinka.com)]
+Parent="Search Engines"
+Browser="Kolinka Forum Search"
+
+[KRetrieve/]
+Parent="Search Engines"
+Browser="KRetrieve"
+
+[LapozzBot/*]
+Parent="Search Engines"
+Browser="LapozzBot"
+
+[Linguee Bot (http://www.linguee.com/bot; bot@linguee.com)]
+Parent="Search Engines"
+Browser="Linguee Bot"
+
+[Linknzbot*]
+Parent="Search Engines"
+Browser="Linknzbot"
+
+[LocalcomBot/*]
+Parent="Search Engines"
+Browser="LocalcomBot"
+
+[MaSagool/*]
+Parent="Search Engines"
+Browser="Sagoo"
+Version="1.0"
+MajorVer=1
+
+[miniRank/*]
+Parent="Search Engines"
+Browser="miniRank"
+
+[Mnogosearch*]
+Parent="Search Engines"
+Browser="Mnogosearch"
+
+[Mozilla/0.9* no dos :) (Linux*)]
+Parent="Search Engines"
+Browser="goliat"
+
+[Mozilla/4.0 (compatible; *Vagabondo/4.0*]
+Parent="Search Engines"
+Browser="Vagabondo"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/4.0 (compatible; *Vagabondo/*]
+Parent="Search Engines"
+Browser="Vagabondo"
+
+[Mozilla/4.0 (compatible; Arachmo)]
+Parent="Search Engines"
+Browser="Arachmo"
+
+[Mozilla/4.0 (compatible; http://search.thunderstone.com/texis/websearch/about.html)]
+Parent="Search Engines"
+Browser="Texis Websearch"
+
+[Mozilla/4.0 (compatible; T-H-U-N-D-E-R-S-T-O-N-E)*]
+Parent="Search Engines"
+Browser="Texis Webscript"
+
+[Mozilla/4.0 (compatible; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
+Parent="Search Engines"
+Browser="Girafabot"
+Win32="true"
+
+[Mozilla/4.0(?compatible; MSIE 6.0; Qihoo *)]
+Parent="Search Engines"
+Browser="Qihoo"
+
+[Mozilla/4.7 (compatible; WhizBang; http://www.whizbang.com/crawler)]
+Parent="Search Engines"
+Browser="Inxight Software"
+
+[Mozilla/5.0 (compatible; ActiveTouristBot*; http://www.activetourist.com)]
+Parent="Search Engines"
+Browser="ActiveTouristBot"
+
+[Mozilla/5.0 (compatible; ayna-crawler*)]
+Parent="Search Engines"
+Browser="ayna-crawler"
+
+[Mozilla/5.0 (compatible; Butterfly/1.0; *)*]
+Parent="Search Engines"
+Browser="Butterfly"
+
+[Mozilla/5.0 (compatible; Charlotte/*; *)]
+Parent="Search Engines"
+Browser="Charlotte"
+Beta="true"
+
+[Mozilla/5.0 (compatible; CXL-FatAssANT*)]
+Parent="Search Engines"
+Browser="FatAssANT"
+
+[Mozilla/5.0 (compatible; DBLBot/1.0; ?http://www.dontbuylists.com/)]
+Parent="Search Engines"
+Browser="DBLBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; EARTHCOM.info/*)]
+Parent="Search Engines"
+Browser="EARTHCOM"
+
+[Mozilla/5.0 (compatible; Lipperhey Spider; http://www.lipperhey.com/)]
+Parent="Search Engines"
+Browser="Lipperhey Spider"
+
+[Mozilla/5.0 (compatible; MojeekBot/*; http://www.mojeek.com/bot.html)]
+Parent="Search Engines"
+Browser="MojeekBot"
+
+[Mozilla/5.0 (compatible; NLCrawler/*]
+Parent="Search Engines"
+Browser="Northern Light Web Search"
+
+[Mozilla/5.0 (compatible; OsO;*]
+Parent="Search Engines"
+Browser="Octopodus"
+
+[Mozilla/5.0 (compatible; ParchBot/1.0;*)]
+Parent="Search Engines"
+Browser="ParchBot"
+
+[Mozilla/5.0 (compatible; Pogodak.*)]
+Parent="Search Engines"
+Browser="Pogodak"
+
+[Mozilla/5.0 (compatible; Quantcastbot/1.*)]
+Parent="Search Engines"
+Browser="Quantcastbot"
+
+[Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)]
+Parent="Search Engines"
+Browser="ScoutJet"
+
+[Mozilla/5.0 (compatible; Scrubby/*; +http://www.scrubtheweb.com/abs/meta-check.html)]
+Parent="Search Engines"
+Browser="Scrubby"
+
+[Mozilla/5.0 (compatible; YoudaoBot/1.*; http://www.youdao.com/help/webmaster/spider/*)]
+Parent="Search Engines"
+Browser="YoudaoBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (Twiceler*)]
+Parent="Search Engines"
+Browser="Twiceler"
+
+[Mozilla/5.0 CostaCider Search*]
+Parent="Search Engines"
+Browser="CostaCider Search"
+
+[Mozilla/5.0 GurujiBot/1.0 (*)]
+Parent="Search Engines"
+Browser="GurujiBot"
+
+[NavissoBot]
+Parent="Search Engines"
+Browser="NavissoBot"
+
+[NextGenSearchBot*(for information visit *)]
+Parent="Search Engines"
+Browser="ZoomInfo"
+
+[Norbert the Spider(Burf.com)]
+Parent="Search Engines"
+Browser="Norbert the Spider"
+
+[NuSearch Spider*]
+Parent="Search Engines"
+Browser="nuSearch"
+
+[ObjectsSearch/*]
+Parent="Search Engines"
+Browser="ObjectsSearch"
+
+[OOZBOT/0.20 ( http://www.setooz.com/oozbot.html ; agentname at setooz dot_com )]
+Parent="Search Engines"
+Browser="Setooz"
+
+[OpenISearch/1.*]
+Parent="Search Engines"
+Browser="OpenISearch (Amazon)"
+
+[Pagebull http://www.pagebull.com/]
+Parent="Search Engines"
+Browser="Pagebull"
+
+[PEERbot*]
+Parent="Search Engines"
+Browser="PEERbot"
+
+[Pompos/*]
+Parent="Search Engines"
+Browser="Pompos"
+
+[Popdexter/*]
+Parent="Search Engines"
+Browser="Popdex"
+
+[Qweery*]
+Parent="Search Engines"
+Browser="QweeryBot"
+
+[RedCell/* (*)]
+Parent="Search Engines"
+Browser="RedCell"
+
+[SaladSpoon/ShopSalad 1.* (Search Engine crawler for ShopSalad.com; *; crawler@shopsalad.com)]
+Parent="Search Engines"
+Browser="ShopSalad"
+
+[Scrubby/*]
+Parent="Search Engines"
+Browser="Scrub The Web"
+
+[Search-10/*]
+Parent="Search Engines"
+Browser="Search-10"
+
+[search.ch*]
+Parent="Search Engines"
+Browser="Swiss Search Engine"
+
+[Searchmee! Spider*]
+Parent="Search Engines"
+Browser="Searchmee!"
+
+[Seekbot/*]
+Parent="Search Engines"
+Browser="Seekbot"
+
+[SiteSpider]
+Parent="Search Engines"
+Browser="SiteSpider"
+
+[Sosospider?(+http://help.soso.com/webspider.htm)]
+Parent="Search Engines"
+Browser="Sosospider"
+
+[Spinne/*]
+Parent="Search Engines"
+Browser="Spinne"
+
+[sproose/*]
+Parent="Search Engines"
+Browser="Sproose"
+
+[Sqeobot/0.*]
+Parent="Search Engines"
+Browser="Branzel"
+
+[SquigglebotBot/*]
+Parent="Search Engines"
+Browser="SquigglebotBot"
+
+[StackRambler/*]
+Parent="Search Engines"
+Browser="StackRambler"
+
+[SygolBot*]
+Parent="Search Engines"
+Browser="SygolBot"
+
+[SynoBot]
+Parent="Search Engines"
+Browser="SynoBot"
+
+[Szukacz/*]
+Parent="Search Engines"
+Browser="Szukacz"
+
+[Tarantula/*]
+Parent="Search Engines"
+Browser="Tarantula"
+
+[TerrawizBot/*]
+Parent="Search Engines"
+Browser="TerrawizBot"
+
+[Tkensaku/*]
+Parent="Search Engines"
+Browser="Tkensaku"
+
+[TMCrawler]
+Parent="Search Engines"
+Browser="TMCrawler"
+
+[TwengaBot-Discover (http://www.twenga.fr/bot-discover.html)]
+Parent="Search Engines"
+Browser="TwengaBot-Discover"
+
+[Twingly Recon]
+Parent="Search Engines"
+Browser="Twingly Recon"
+
+[updated/*]
+Parent="Search Engines"
+Browser="Updated!"
+
+[URL Spider Pro/*]
+Parent="Search Engines"
+Browser="URL Spider Pro"
+
+[URL Spider SQL*]
+Parent="Search Engines"
+Browser="Innerprise Enterprise Search"
+
+[VMBot/*]
+Parent="Search Engines"
+Browser="VMBot"
+
+[voyager/2.0 (http://www.kosmix.com/html/crawler.html)]
+Parent="Search Engines"
+Browser="Voyager"
+
+[wadaino.jp-crawler*]
+Parent="Search Engines"
+Browser="wadaino.jp"
+
+[WebAlta Crawler/*]
+Parent="Search Engines"
+Browser="WebAlta Crawler"
+
+[WebCorp/*]
+Parent="Search Engines"
+Browser="WebCorp"
+
+[webcrawl.net]
+Parent="Search Engines"
+Browser="webcrawl.net"
+
+[WISEbot/*]
+Parent="Search Engines"
+Browser="WISEbot"
+
+[Wotbox/*]
+Parent="Search Engines"
+Browser="Wotbox"
+
+[www.zatka.com]
+Parent="Search Engines"
+Browser="Zatka"
+
+[WWWeasel Robot v*]
+Parent="Search Engines"
+Browser="World Wide Weasel"
+
+[YadowsCrawler*]
+Parent="Search Engines"
+Browser="YadowsCrawler"
+
+[YodaoBot/*]
+Parent="Search Engines"
+Browser="YodaoBot"
+
+[ZeBot_www.ze.bz*]
+Parent="Search Engines"
+Browser="ZE.bz"
+
+[zibber-v*]
+Parent="Search Engines"
+Browser="Zibb"
+
+[ZipppBot/*]
+Parent="Search Engines"
+Browser="ZipppBot"
+
+[Mozilla/5.0 (compatible; Charlotte/*)]
+Parent="Search Engines"
+Browser="Charlotte"
+
+[Mozilla/4.0 (compatible*; MSIE *; Windows NT; Girafabot; girafabot at girafa dot com; http://www.girafa.com)]
+Parent="Search Engines"
+Browser="Girafabot"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0(?compatible*; MSIE 6.0; Qihoo *)]
+Parent="Search Engines"
+Browser="Qihoo"
+
+[Mozilla/5.0 (compatible; EasouSpider*]
+Parent="Search Engines"
+Browser="EasouSpider"
+
+[NerdyBot]
+Parent="Search Engines"
+Browser="NerdyBot"
+
+[Mozilla/5.0 (compatible; coccoc/1.0*]
+Parent="Search Engines"
+Browser="Coccoc bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; coccoc/*]
+Parent="Search Engines"
+Browser="Coccoc bot"
+
+[Wada.vn*]
+Parent="Search Engines"
+Browser="Wada.vn Search Bot"
+
+[Mozilla/5.0 (compatible; Wada.vn*]
+Parent="Search Engines"
+Browser="Wada.vn Search Bot"
+
+[Mozilla/5.0 (compatible; AcoonBot/4.11*]
+Parent="Search Engines"
+Browser="AcoonBot"
+Version="4.11"
+MajorVer=4
+MinorVer=11
+
+[Mozilla/5.0 (compatible; AcoonBot/*]
+Parent="Search Engines"
+Browser="AcoonBot"
+
+[Mozilla/5.0 (compatible; MojeekBot/0.6*]
+Parent="Search Engines"
+Browser="MojeekBot"
+Version="0.6"
+MinorVer=6
+
+[Mozilla/5.0 (compatible; MojeekBot/*]
+Parent="Search Engines"
+Browser="MojeekBot"
+
+[Mozilla/5.1 (compatible; MonoBot/1.0*]
+Parent="Search Engines"
+Browser="MonoBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.1 (compatible; MonoBot/*]
+Parent="Search Engines"
+Browser="MonoBot"
+
+[Mozilla/5.1 (compatible; GLBot/1.0*]
+Parent="Search Engines"
+Browser="GLBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.1 (compatible; GLBot/*]
+Parent="Search Engines"
+Browser="GLBot"
+
+[Mozilla/5.1 (compatible; DBot/7.0*]
+Parent="Search Engines"
+Browser="DBot"
+Version="7.0"
+MajorVer=7
+
+[Mozilla/5.1 (compatible; DBot/*]
+Parent="Search Engines"
+Browser="DBot"
+
+[Mozilla/5.1 (compatible; PWBot/1.0*]
+Parent="Search Engines"
+Browser="PWBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.1 (compatible; PWBot/*]
+Parent="Search Engines"
+Browser="PWBot"
+
+[Mozilla/5.1 (compatible; +5Bot/1.0*]
+Parent="Search Engines"
+Browser="5Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.1 (compatible; +5Bot/*]
+Parent="Search Engines"
+Browser="5Bot"
+
+[Mozilla/5.0 (compatible; WASALive-Bot*]
+Parent="Search Engines"
+Browser="WASALive Bot"
+
+[GigablastOpenSource/1.0*]
+Parent="Search Engines"
+Browser="Gigablast Search Engine"
+Version="1.0"
+MajorVer=1
+
+[GigablastOpenSource/*]
+Parent="Search Engines"
+Browser="Gigablast Search Engine"
+
+[Mozilla/5.0 (compatible; YioopBot*]
+Parent="Search Engines"
+Browser="YioopBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BitTorrent Clients
+
+[BitTorrent Clients]
+Parent="DefaultProperties"
+Comment="BitTorrent Clients"
+Browser=""
+Crawler="true"
+
+[Azureus*]
+Parent="BitTorrent Clients"
+Browser="Azureus"
+
+[BitComet/*]
+Parent="BitTorrent Clients"
+Browser="BitComet"
+
+[BitTornado/*]
+Parent="BitTorrent Clients"
+Browser="BitTornado"
+
+[BitTorrent/*]
+Parent="BitTorrent Clients"
+Browser="BitTorrent"
+
+[BitTorrentMac/*]
+Parent="BitTorrent Clients"
+Browser="BitTorrentMac"
+
+[BTSP/*]
+Parent="BitTorrent Clients"
+Browser="BTSP"
+
+[Deluge*]
+Parent="BitTorrent Clients"
+Browser="Deluge"
+
+[FDM*]
+Parent="BitTorrent Clients"
+Browser="FDM"
+
+[KTorrent/*]
+Parent="BitTorrent Clients"
+Browser="KTorrent"
+
+[libtorrent/*]
+Parent="BitTorrent Clients"
+Browser="libtorrent"
+
+[MediaGet*]
+Parent="BitTorrent Clients"
+Browser="MediaGet"
+
+[rtorrent/*]
+Parent="BitTorrent Clients"
+Browser="rtorrent"
+
+[Transmission/*]
+Parent="BitTorrent Clients"
+Browser="Transmission"
+
+[uTorrent/*]
+Parent="BitTorrent Clients"
+Browser="uTorrent"
+
+[uTorrentMac/*]
+Parent="BitTorrent Clients"
+Browser="uTorrentMac"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hatena
+
+[Hatena]
+Parent="DefaultProperties"
+Comment="Hatena"
+Browser="Hatena"
+Crawler="true"
+
+[Feed::Find/*]
+Parent="Hatena"
+Browser="Feed Find"
+isSyndicationReader="true"
+
+[Hatena Antenna/*]
+Parent="Hatena"
+Browser="Hatena Antenna"
+
+[Hatena Bookmark/*]
+Parent="Hatena"
+Browser="Hatena Bookmark"
+
+[Hatena RSS/*]
+Parent="Hatena"
+Browser="Hatena RSS"
+isSyndicationReader="true"
+
+[Hatena::Crawler/*]
+Parent="Hatena"
+Browser="Hatena Crawler"
+
+[HatenaScreenshot*]
+Parent="Hatena"
+Browser="HatenaScreenshot"
+
+[URI::Fetch/*]
+Parent="Hatena"
+Browser="URI::Fetch"
+
+[DoCoMo/2.0 D903i(c100;TB;W28H20) (compatible; Hatena-Mobile-Gateway/1.2; +http://mgw.hatena.ne.jp/help)]
+Parent="Hatena"
+Browser="Hatena-Mobile-Gateway"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+isMobileDevice="true"
+
+[Hatena::Bookmark/2.00]
+Parent="Hatena"
+Browser="Hatena::Bookmark"
+Version="2.0"
+MajorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Larbin
+
+[Larbin]
+Parent="DefaultProperties"
+Comment="Larbin"
+Browser="Larbin"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[larbin_2.6*]
+Parent="Larbin"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[larbin*]
+Parent="Larbin"
+
+[binlar_2.6*]
+Parent="Larbin"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[binlar*]
+Parent="Larbin"
+
+[*Larbin*]
+Parent="Larbin"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Archive
+
+[Internet Archive]
+Parent="DefaultProperties"
+Comment="Internet Archive"
+Browser="Internet Archive"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[ia_archiver*]
+Parent="Internet Archive"
+
+[InternetArchive/*]
+Parent="Internet Archive"
+
+[Mozilla/5.0 (compatible; archive.org_bot*)]
+Parent="Internet Archive"
+
+[Mozilla/5.0 (compatible; special_archiver/3.1*]
+Parent="Internet Archive"
+Browser="Internet Archive Special Archiver"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (compatible; special_archiver/3.2*]
+Parent="Internet Archive"
+Browser="Internet Archive Special Archiver"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[Mozilla/5.0 (compatible; special_archiver/3.3*]
+Parent="Internet Archive"
+Browser="Internet Archive Special Archiver"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+
+[Mozilla/5.0 (compatible; special_archiver/*]
+Parent="Internet Archive"
+Browser="Internet Archive Special Archiver"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
+
+[Nutch]
+Parent="DefaultProperties"
+Comment="Nutch"
+Browser="Nutch"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[*Nutch*]
+Parent="Nutch"
+
+[CazoodleBot/*]
+Parent="Nutch"
+Browser="CazoodleBot"
+
+[LOOQ/0.1*]
+Parent="Nutch"
+Browser="LOOQ"
+
+[Nutch/0.? (OpenX Spider)]
+Parent="Nutch"
+
+[linguatools-bot/Nutch*]
+Parent="Nutch"
+Browser="linguatoolsbot"
+
+[MaxPointCrawler/Nutch*]
+Parent="Nutch"
+Browser="MaxPointCrawler"
+
+[MR Crawler/Nutch*]
+Parent="Nutch"
+Browser="MR Crawler"
+
+[My Nutch Spider/Nutch*]
+Parent="Nutch"
+
+[fetch/Nutch*]
+Parent="Nutch"
+
+[*Nutch?1.6*]
+Parent="Nutch"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[*Nutch?1.7*]
+Parent="Nutch"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[Mozilla/5.0 (*Android*Mobile*) Gecko/* Firefox/* commoncrawl.org/research//Nutch-1.7*]
+Parent="Nutch"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+Platform="Android"
+isMobileDevice="true"
+
+[Nutch/* (OpenX Spider)]
+Parent="Nutch"
+Browser="OpenX Spider"
+
+[The Crawler/Nutch*]
+Parent="Nutch"
+Browser="The Crawler"
+
+[Domnutch-Bot/Nutch-1.0*]
+Parent="Nutch"
+Browser="Domnutch Bot"
+Version="1.0"
+MajorVer=1
+
+[DiscoverEd/Nutch-1.7 (OER search crawler*]
+Parent="Nutch"
+Browser="DiscoverEd"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[Elefent 1.2]
+Parent="General Crawlers"
+Comment="General Crawlers"
+Browser="Elefent"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+Crawler="true"
+
+[elefent/Elefent 1.2 (A friendly web elefent.; http://elefent.eu/; webmaster@elefent.eu)]
+Parent="Elefent 1.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nutch
+
+[Nutch test crawler]
+Parent="DefaultProperties"
+Comment="Nutch test crawler"
+Browser="Nutch test crawler"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Nutch test crawler/Nutch*]
+Parent="Nutch test crawler"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) Gecko/* Firefox/4.0*/Nutch*]
+Parent="Nutch test crawler"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Webaroo
+
+[Webaroo]
+Parent="DefaultProperties"
+Comment="Webaroo"
+Browser="Webaroo"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; Webaroo/*)]
+Parent="Webaroo"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (Windows; U; Windows *; *; rv:*) Gecko/* Firefox/* webaroo/*]
+Parent="Webaroo"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress
+
+[WordPress]
+Parent="DefaultProperties"
+Comment="WordPress"
+Browser="WordPress"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/*]
+Parent="WordPress"
+
+[WordPress-B-/2.*]
+Parent="WordPress"
+Browser="WordPress-B"
+Version="2.0"
+MajorVer=2
+
+[WordPress-Do-P-/2.*]
+Parent="WordPress"
+Browser="WordPress-Do-P"
+Version="2.0"
+MajorVer=2
+
+[Incutio XML-RPC -- WordPress/*]
+Parent="WordPress"
+
+[The Incutio XML-RPC PHP Library -- WordPress*]
+Parent="WordPress"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.0
+
+[WordPress 3.0]
+Parent="DefaultProperties"
+Comment="WordPress 3.0"
+Browser="WordPress"
+Version="3.0"
+MajorVer=3
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.0*]
+Parent="WordPress 3.0"
+
+[WordPress 3.0* Feed Client*]
+Parent="WordPress 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.1
+
+[WordPress 3.1]
+Parent="DefaultProperties"
+Comment="WordPress 3.1"
+Browser="WordPress"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.1*]
+Parent="WordPress 3.1"
+
+[WordPress 3.1* Feed Client*]
+Parent="WordPress 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.2
+
+[WordPress 3.2]
+Parent="DefaultProperties"
+Comment="WordPress 3.2"
+Browser="WordPress"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.2*]
+Parent="WordPress 3.2"
+
+[WordPress 3.2* Feed Client*]
+Parent="WordPress 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.3
+
+[WordPress 3.3]
+Parent="DefaultProperties"
+Comment="WordPress 3.3"
+Browser="WordPress"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.3*]
+Parent="WordPress 3.3"
+
+[WordPress 3.3* Feed Client*]
+Parent="WordPress 3.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.4
+
+[WordPress 3.4]
+Parent="DefaultProperties"
+Comment="WordPress 3.4"
+Browser="WordPress"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.4*]
+Parent="WordPress 3.4"
+
+[WordPress 3.4* Feed Client*]
+Parent="WordPress 3.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.5
+
+[WordPress 3.5]
+Parent="DefaultProperties"
+Comment="WordPress 3.5"
+Browser="WordPress"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.5*]
+Parent="WordPress 3.5"
+
+[WordPress 3.5* Feed Client*]
+Parent="WordPress 3.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.6
+
+[WordPress 3.6]
+Parent="DefaultProperties"
+Comment="WordPress 3.6"
+Browser="WordPress"
+Version="3.6"
+MajorVer=3
+MinorVer=6
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.6*]
+Parent="WordPress 3.6"
+
+[WordPress 3.6* Feed Client*]
+Parent="WordPress 3.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.7
+
+[WordPress 3.7]
+Parent="DefaultProperties"
+Comment="WordPress 3.7"
+Browser="WordPress"
+Version="3.7"
+MajorVer=3
+MinorVer=7
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.7*]
+Parent="WordPress 3.7"
+
+[WordPress 3.7* Feed Client*]
+Parent="WordPress 3.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.8
+
+[WordPress 3.8]
+Parent="DefaultProperties"
+Comment="WordPress 3.8"
+Browser="WordPress"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.8*]
+Parent="WordPress 3.8"
+
+[WordPress 3.8* Feed Client*]
+Parent="WordPress 3.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 3.9
+
+[WordPress 3.9]
+Parent="DefaultProperties"
+Comment="WordPress 3.9"
+Browser="WordPress"
+Version="3.9"
+MajorVer=3
+MinorVer=9
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/3.9*]
+Parent="WordPress 3.9"
+
+[WordPress 3.9* Feed Client*]
+Parent="WordPress 3.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress 4.0
+
+[WordPress 4.0]
+Parent="DefaultProperties"
+Comment="WordPress 4.0"
+Browser="WordPress"
+Version="4.0"
+MajorVer=4
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[WordPress/4.0*]
+Parent="WordPress 4.0"
+
+[WordPress 4.0* Feed Client*]
+Parent="WordPress 4.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WordPress App
+
+[WordPress App]
+Parent="DefaultProperties"
+Comment="WordPress App"
+Browser="WordPress App"
+Frames="true"
+Tables="true"
+
+[wp-iphone/4.4 (*iPhone OS 8.0*, iPad) Mobile*]
+Parent="WordPress App"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[wp-iphone/4.4 (*iPhone OS*, iPad) Mobile*]
+Parent="WordPress App"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[wp-iphone/* (*iPhone OS 8.0*, iPad) Mobile*]
+Parent="WordPress App"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[wp-iphone/* (*iPhone OS*, iPad) Mobile*]
+Parent="WordPress App"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[wp-iphone/4.4 (*iPhone OS 8.0*) Mobile*]
+Parent="WordPress App"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[wp-iphone/4.4 (*iPhone OS*) Mobile*]
+Parent="WordPress App"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="iOS"
+isMobileDevice="true"
+
+[wp-iphone/* (*iPhone OS 8.0*) Mobile*]
+Parent="WordPress App"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[wp-iphone/* (*iPhone OS*) Mobile*]
+Parent="WordPress App"
+Platform="iOS"
+isMobileDevice="true"
+
+[wp-android/3.0* (*Android 4.4*GT-N7100/*]
+Parent="WordPress App"
+Version="3.0"
+MajorVer=3
+Platform="Android"
+Platform_Version="4.4"
+isMobileDevice="true"
+
+[wp-android/3.0* (*Linux*Android*GT-N7100/*]
+Parent="WordPress App"
+Version="3.0"
+MajorVer=3
+Platform="Android"
+isMobileDevice="true"
+
+[wp-android/* (*Android 4.4*GT-N7100/*]
+Parent="WordPress App"
+Platform="Android"
+Platform_Version="4.4"
+isMobileDevice="true"
+
+[wp-android/* (*Linux*Android*GT-N7100/*]
+Parent="WordPress App"
+Platform="Android"
+isMobileDevice="true"
+
+[wp-android/3.0* (*Android 4.4*]
+Parent="WordPress App"
+Version="3.0"
+MajorVer=3
+Platform="Android"
+Platform_Version="4.4"
+isMobileDevice="true"
+
+[wp-android/3.0* (*Linux*Android*]
+Parent="WordPress App"
+Version="3.0"
+MajorVer=3
+Platform="Android"
+isMobileDevice="true"
+
+[wp-android/* (*Android 4.4*]
+Parent="WordPress App"
+Platform="Android"
+Platform_Version="4.4"
+isMobileDevice="true"
+
+[wp-android/* (*Linux*Android*]
+Parent="WordPress App"
+Platform="Android"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Copyright/Plagiarism
+
+[Copyright/Plagiarism]
+Parent="DefaultProperties"
+Comment="Copyright/Plagiarism"
+Browser="Copyright/Plagiarism"
+Crawler="true"
+
+[BDFetch]
+Parent="Copyright/Plagiarism"
+Browser="BDFetch"
+
+[copyright sheriff (*)]
+Parent="Copyright/Plagiarism"
+Browser="copyright sheriff"
+
+[CopyRightCheck*]
+Parent="Copyright/Plagiarism"
+Browser="CopyRightCheck"
+
+[FairAd Client*]
+Parent="Copyright/Plagiarism"
+Browser="FairAd Client"
+
+[iCopyright Conductor*]
+Parent="Copyright/Plagiarism"
+Browser="iCopyright Conductor"
+
+[IPiumBot laurion(dot)com]
+Parent="Copyright/Plagiarism"
+Browser="IPiumBot"
+
+[IWAgent/*]
+Parent="Copyright/Plagiarism"
+Browser="Brand Protect"
+
+[Mozilla/5.0 (compatible; DKIMRepBot/*)]
+Parent="Copyright/Plagiarism"
+Browser="DKIMRepBot"
+
+[oBot]
+Parent="Copyright/Plagiarism"
+Browser="oBot"
+
+[Mozilla/5.0 (compatible; oBot/2.3*]
+Parent="Copyright/Plagiarism"
+Browser="oBot"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+
+[Mozilla/5.0 (compatible; oBot/*]
+Parent="Copyright/Plagiarism"
+Browser="oBot"
+
+[SlySearch/*]
+Parent="Copyright/Plagiarism"
+Browser="SlySearch"
+
+[TurnitinBot/*]
+Parent="Copyright/Plagiarism"
+Browser="TurnitinBot"
+
+[TutorGigBot/*]
+Parent="Copyright/Plagiarism"
+Browser="TutorGig"
+
+[Esribot]
+Parent="General Crawlers"
+Comment="General Crawlers"
+Browser="Esribot"
+Crawler="true"
+
+[Esribot/1.*]
+Parent="Esribot"
+Version="1.0"
+MajorVer=1
+
+[Esribot/*]
+Parent="Esribot"
+
+[Mozilla/5.0 (compatible; Esribot/1.*]
+Parent="Esribot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Esribot/*]
+Parent="Esribot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; DNS Tools
+
+[DNS Tools]
+Parent="DefaultProperties"
+Comment="DNS Tools"
+Browser="DNS Tools"
+Crawler="true"
+
+[Domain Dossier utility*]
+Parent="DNS Tools"
+Browser="Domain Dossier"
+
+[Mozilla/5.0 (compatible; DNS-Digger/*)]
+Parent="DNS Tools"
+Browser="DNS-Digger"
+
+[OpenDNS Domain Crawler noc@opendns.com]
+Parent="DNS Tools"
+Browser="OpenDNS Domain Crawler"
+
+[EuripBot]
+Parent="General Crawlers"
+Comment="Europe Internet Portal"
+Browser="Europe Internet Portal"
+Crawler="true"
+
+[EuripBot/2.0*]
+Parent="EuripBot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; EuripBot/2*]
+Parent="EuripBot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; EuripBot*]
+Parent="EuripBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Download Managers
+
+[Download Managers]
+Parent="DefaultProperties"
+Comment="Download Managers"
+Browser="Download Managers"
+Crawler="true"
+
+[A1 Website Download/1.* (*) miggibot]
+Parent="Download Managers"
+Browser="A1 Website Download"
+
+[AutoMate5]
+Parent="Download Managers"
+Browser="AutoMate5"
+
+[Beamer*]
+Parent="Download Managers"
+Browser="Beamer"
+
+[BitBeamer/*]
+Parent="Download Managers"
+Browser="BitBeamer"
+
+[DA *]
+Parent="Download Managers"
+Browser="Download Accelerator"
+
+[DAP *]
+Parent="Download Managers"
+Browser="Download Accelerator Plus"
+
+[masscan/1.0*]
+Parent="Download Managers"
+Browser="Download Accelerator"
+Version="1.0"
+MajorVer=1
+
+[masscan/*]
+Parent="Download Managers"
+Browser="Download Accelerator"
+
+[Download Demon*]
+Parent="Download Managers"
+Browser="Download Demon"
+
+[Download Express*]
+Parent="Download Managers"
+Browser="Download Express"
+
+[Download Master*]
+Parent="Download Managers"
+Browser="Download Master"
+
+[Download Ninja*]
+Parent="Download Managers"
+Browser="Download Ninja"
+
+[Download Wonder*]
+Parent="Download Managers"
+Browser="Download Wonder"
+
+[DownloadSession*]
+Parent="Download Managers"
+Browser="DownloadSession"
+
+[EasyDL/*]
+Parent="Download Managers"
+Browser="EasyDL"
+
+[FDM 1.x]
+Parent="Download Managers"
+Browser="Free Download Manager"
+
+[FlashGet]
+Parent="Download Managers"
+Browser="FlashGet"
+
+[FreshDownload/*]
+Parent="Download Managers"
+Browser="FreshDownload"
+
+[GetRight/*]
+Parent="Download Managers"
+Browser="GetRight"
+
+[GetRightPro/*]
+Parent="Download Managers"
+Browser="GetRightPro"
+
+[GetSmart/*]
+Parent="Download Managers"
+Browser="GetSmart"
+
+[Go!Zilla*]
+Parent="Download Managers"
+Browser="GoZilla"
+
+[Gozilla/*]
+Parent="Download Managers"
+Browser="Gozilla"
+
+[Internet Ninja*]
+Parent="Download Managers"
+Browser="Internet Ninja"
+
+[Kontiki Client*]
+Parent="Download Managers"
+Browser="Kontiki Client"
+
+[lftp/3.2.1]
+Parent="Download Managers"
+Browser="lftp"
+
+[LightningDownload/*]
+Parent="Download Managers"
+Browser="LightningDownload"
+
+[LMQueueBot/*]
+Parent="Download Managers"
+Browser="LMQueueBot"
+
+[MetaProducts Download Express/*]
+Parent="Download Managers"
+Browser="Download Express"
+
+[Mozilla/4.0 (compatible; Getleft*)]
+Parent="Download Managers"
+Browser="Getleft"
+
+[Myzilla]
+Parent="Download Managers"
+Browser="Myzilla"
+
+[Net Vampire/*]
+Parent="Download Managers"
+Browser="Net Vampire"
+
+[Net_Vampire*]
+Parent="Download Managers"
+Browser="Net_Vampire"
+
+[NetAnts*]
+Parent="Download Managers"
+Browser="NetAnts"
+
+[NetPumper*]
+Parent="Download Managers"
+Browser="NetPumper"
+
+[NetSucker*]
+Parent="Download Managers"
+Browser="NetSucker"
+
+[NetZip Downloader*]
+Parent="Download Managers"
+Browser="NetZip Downloader"
+
+[NexTools WebAgent*]
+Parent="Download Managers"
+Browser="NexTools WebAgent"
+
+[Offline Downloader*]
+Parent="Download Managers"
+Browser="Offline Downloader"
+
+[P3P Client]
+Parent="Download Managers"
+Browser="P3P Client"
+
+[PageDown*]
+Parent="Download Managers"
+Browser="PageDown"
+
+[PicaLoader*]
+Parent="Download Managers"
+Browser="PicaLoader"
+
+[Prozilla*]
+Parent="Download Managers"
+Browser="Prozilla"
+
+[RealDownload/*]
+Parent="Download Managers"
+Browser="RealDownload"
+
+[sEasyDL/*]
+Parent="Download Managers"
+Browser="EasyDL"
+
+[shareaza*]
+Parent="Download Managers"
+Browser="shareaza"
+
+[SmartDownload/*]
+Parent="Download Managers"
+Browser="SmartDownload"
+
+[SpeedDownload/*]
+Parent="Download Managers"
+Browser="Speed Download"
+
+[Star*Downloader/*]
+Parent="Download Managers"
+Browser="StarDownloader"
+
+[STEROID Download]
+Parent="Download Managers"
+Browser="STEROID Download"
+
+[SuperBot/*]
+Parent="Download Managers"
+Browser="SuperBot"
+
+[Vegas95/*]
+Parent="Download Managers"
+Browser="Vegas95"
+
+[WebZIP*]
+Parent="Download Managers"
+Browser="WebZIP"
+
+[WinTools]
+Parent="Download Managers"
+Browser="WinTools"
+
+[Xaldon WebSpider*]
+Parent="Download Managers"
+Browser="Xaldon WebSpider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; E-Mail Harvesters
+
+[E-Mail Harvesters]
+Parent="DefaultProperties"
+Comment="E-Mail Harvesters"
+Browser="E-Mail Harvesters"
+Crawler="true"
+
+[*E-Mail Address Extractor*]
+Parent="E-Mail Harvesters"
+Browser="E-Mail Address Extractor"
+
+[*www4mail/*]
+Parent="E-Mail Harvesters"
+Browser="www4mail"
+
+[8484 Boston Project*]
+Parent="E-Mail Harvesters"
+Browser="8484 Boston Project"
+
+[Atomic_Email]
+Parent="E-Mail Harvesters"
+Browser="Atomic_Email"
+
+[Atomic_Email_Hunter/*]
+Parent="E-Mail Harvesters"
+Browser="Atomic Email Hunter"
+
+[CherryPicker*/*]
+Parent="E-Mail Harvesters"
+Browser="CherryPickerElite"
+
+[Chilkat/*]
+Parent="E-Mail Harvesters"
+Browser="Chilkat"
+
+[ContactBot/*]
+Parent="E-Mail Harvesters"
+Browser="ContactBot"
+
+[eCatch*]
+Parent="E-Mail Harvesters"
+Browser="eCatch"
+
+[EmailCollector*]
+Parent="E-Mail Harvesters"
+Browser="E-Mail Collector"
+
+[EMAILsearcher]
+Parent="E-Mail Harvesters"
+Browser="EMAILsearcher"
+
+[EmailSiphon*]
+Parent="E-Mail Harvesters"
+Browser="E-Mail Siphon"
+
+[EmailWolf*]
+Parent="E-Mail Harvesters"
+Browser="EMailWolf"
+
+[Epsilon SoftWorks? MailMunky]
+Parent="E-Mail Harvesters"
+Browser="MailMunky"
+
+[ExtractorPro*]
+Parent="E-Mail Harvesters"
+Browser="ExtractorPro"
+
+[Franklin Locator*]
+Parent="E-Mail Harvesters"
+Browser="Franklin Locator"
+
+[Missigua Locator*]
+Parent="E-Mail Harvesters"
+Browser="Missigua Locator"
+
+[Mozilla/4.0 (compatible; Advanced Email Extractor*)]
+Parent="E-Mail Harvesters"
+Browser="Advanced Email Extractor"
+
+[Netprospector*]
+Parent="E-Mail Harvesters"
+Browser="Netprospector"
+
+[ProWebWalker*]
+Parent="E-Mail Harvesters"
+Browser="ProWebWalker"
+
+[sna-0.0.*]
+Parent="E-Mail Harvesters"
+Browser="Mike Elliotts E-Mail Harvester"
+
+[WebEnhancer*]
+Parent="E-Mail Harvesters"
+Browser="WebEnhancer"
+
+[WebMiner*]
+Parent="E-Mail Harvesters"
+Browser="WebMiner"
+
+[ZIBB Crawler (email address / WWW address)]
+Parent="E-Mail Harvesters"
+Browser="ZIBB Crawler"
+
+[Ezooms]
+Parent="General Crawlers"
+Comment="Ezooms"
+Browser="Ezooms"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Ezooms/1.0; *)]
+Parent="Ezooms"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Ezooms/1.*)]
+Parent="Ezooms"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Ezooms/*)]
+Parent="Ezooms"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Blogs
+
+[Feeds Blogs]
+Parent="DefaultProperties"
+Comment="Feeds Blogs"
+Browser="Feeds Blogs"
+isSyndicationReader="true"
+Crawler="true"
+
+[Bloglines Title Fetch/*]
+Parent="Feeds Blogs"
+Browser="Bloglines Title Fetch"
+
+[Bloglines/* (http://www.bloglines.com*)]
+Parent="Feeds Blogs"
+Browser="BlogLines Web"
+
+[BlogPulse (ISSpider-3.*)]
+Parent="Feeds Blogs"
+Browser="BlogPulse"
+
+[BlogPulseLive (support@blogpulse.com)]
+Parent="Feeds Blogs"
+Browser="BlogPulseLive"
+
+[blogsearchbot-pumpkin-2]
+Parent="Feeds Blogs"
+Browser="blogsearchbot-pumpkin"
+isSyndicationReader="false"
+
+[Irish Blogs Aggregator/*1.0*]
+Parent="Feeds Blogs"
+Browser="Irish Blogs Aggregator"
+Version="1.0"
+MajorVer=1
+
+[kinjabot (http://www.kinja.com; *)]
+Parent="Feeds Blogs"
+Browser="kinjabot"
+
+[Net::Trackback/*]
+Parent="Feeds Blogs"
+Browser="Net::Trackback"
+
+[Reblog*]
+Parent="Feeds Blogs"
+Browser="Reblog"
+
+[Bloglovin/1.0*]
+Parent="Feeds Blogs"
+Browser="Bloglovin Bot"
+Version="1.0"
+MajorVer=1
+
+[Bloglovin/*]
+Parent="Feeds Blogs"
+Browser="Bloglovin Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Feeds Syndicators
+
+[Feeds Syndicators]
+Parent="DefaultProperties"
+Comment="Feeds Syndicators"
+Browser="Feeds Syndicators"
+isSyndicationReader="true"
+Crawler="true"
+
+[*LinkLint*]
+Parent="Feeds Syndicators"
+Browser="LinkLint"
+
+[*NetVisualize*]
+Parent="Feeds Syndicators"
+Browser="NetVisualize"
+
+[AideRSS/1.0 (aiderss.com)*]
+Parent="Feeds Syndicators"
+Browser="AideRSS"
+Version="1.0"
+MajorVer=1
+
+[AideRSS 2.* (postrank.com)*]
+Parent="Feeds Syndicators"
+Browser="AideRSS"
+Version="2.0"
+MajorVer=2
+
+[AideRSS/2.0 (aiderss.com)*]
+Parent="Feeds Syndicators"
+Browser="AideRSS"
+Version="2.0"
+MajorVer=2
+
+[Akregator/*]
+Parent="Feeds Syndicators"
+Browser="Akregator"
+
+[Apple-PubSub/65.28*]
+Parent="Feeds Syndicators"
+Browser="Apple-PubSub"
+Version="65.28"
+MajorVer=65
+MinorVer=28
+
+[Apple-PubSub/*]
+Parent="Feeds Syndicators"
+Browser="Apple-PubSub"
+
+[AppleSyndication/*]
+Parent="Feeds Syndicators"
+Browser="Safari RSS"
+Platform="MacOSX"
+Platform_Version=10
+
+[Cocoal.icio.us/* (*)*]
+Parent="Feeds Syndicators"
+Browser="Cocoal.icio.us"
+
+[Feed43 Proxy/* (*)]
+Parent="Feeds Syndicators"
+Browser="Feed For Free"
+
+[FeedBurner/*]
+Parent="Feeds Syndicators"
+Browser="FeedBurner"
+
+[FeedDemon/* (*)]
+Parent="Feeds Syndicators"
+Browser="FeedDemon"
+Platform="Win32"
+Win32="true"
+
+[FeedDigest/* (*)]
+Parent="Feeds Syndicators"
+Browser="FeedDigest"
+
+[FeedGhost/1.*]
+Parent="Feeds Syndicators"
+Browser="FeedGhost"
+Version="1.0"
+MajorVer=1
+
+[FeedOnFeeds/0.1.* ( http://minutillo.com/steve/feedonfeeds/)]
+Parent="Feeds Syndicators"
+Browser="FeedOnFeeds"
+Version="0.1"
+MinorVer=1
+
+[Feedreader * (Powered by Newsbrain)]
+Parent="Feeds Syndicators"
+Browser="Newsbrain"
+
+[Feedshow/* (*)]
+Parent="Feeds Syndicators"
+Browser="Feedshow"
+
+[Feedster Crawler/?.0; Feedster, Inc.]
+Parent="Feeds Syndicators"
+Browser="Feedster"
+
+[GreatNews/1.0]
+Parent="Feeds Syndicators"
+Browser="GreatNews"
+Version="1.0"
+MajorVer=1
+
+[Gregarius/*]
+Parent="Feeds Syndicators"
+Browser="Gregarius"
+
+[intraVnews/*]
+Parent="Feeds Syndicators"
+Browser="intraVnews"
+
+[JetBrains Omea Reader*]
+Parent="Feeds Syndicators"
+Browser="Omea Reader"
+
+[Liferea/* (Linux; *; http://liferea.sf.net/)*]
+Parent="Feeds Syndicators"
+Browser="Liferea"
+Version="1.0"
+MajorVer=1
+
+[livedoor FeedFetcher/0.0* (http://reader.livedoor.com/;*)]
+Parent="Feeds Syndicators"
+Browser="FeedFetcher"
+
+[MagpieRSS/* (*)]
+Parent="Feeds Syndicators"
+Browser="MagpieRSS"
+
+[Mobitype * (compatible; Mozilla/*; MSIE *.*; Windows *)]
+Parent="Feeds Syndicators"
+Browser="Mobitype"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (*; Rojo *; http://www.rojo.com/corporate/help/agg; *)*]
+Parent="Feeds Syndicators"
+Browser="Rojo"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; Podtech Network; crawler_admin@podtech.net)]
+Parent="Feeds Syndicators"
+Browser="Podtech Network"
+
+[Mozilla/5.0 (compatible; Newz Crawler *; http://www.newzcrawler.com/?)]
+Parent="Feeds Syndicators"
+Browser="Newz Crawler"
+
+[Mozilla/5.0 (compatible; RSSMicro.com RSS/Atom Feed Robot)]
+Parent="Feeds Syndicators"
+Browser="RSSMicro"
+
+[Mozilla/5.0 (compatible;*newstin.com;*)]
+Parent="Feeds Syndicators"
+Browser="NewsTin"
+
+[Mozilla/5.0 (RSS Reader Panel)]
+Parent="Feeds Syndicators"
+Browser="RSS Reader Panel"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:FeedParser; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Jakarta FeedParser"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:FeedParser; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Jakarta FeedParser"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:FeedParser; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Jakarta FeedParser"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:NewsMonster; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="NewsMonster"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:NewsMonster; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="NewsMonster"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:NewsMonster; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="NewsMonster"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:Rojo; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Rojo"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:Rojo; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Rojo"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:Rojo; *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Rojo"
+Platform="Linux"
+
+[Mozilla/5.0 (*aggregator:TailRank; http://tailrank.com/robot)*]
+Parent="Feeds Syndicators"
+Browser="TailRank"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:Tailrank (Spinn3r 2.3); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:Tailrank (Spinn3r 2.3); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:Tailrank (Spinn3r 2.3); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:Spinn3r (Spinn3r 3.0); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.0"
+MajorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:Spinn3r (Spinn3r 3.0); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.0"
+MajorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:Spinn3r (Spinn3r 3.0); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.0"
+MajorVer=3
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:Spinn3r (Spinn3r 3.1); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:Spinn3r (Spinn3r 3.1); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:Spinn3r (Spinn3r 3.1); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*x86_64*; aggregator:Spinn3r (Spinn3r *); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*; aggregator:Spinn3r (Spinn3r *); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*; aggregator:Spinn3r (Spinn3r *); *) Gecko/*]
+Parent="Feeds Syndicators"
+Browser="Spinn3r RSS Aggregator"
+Platform="Linux"
+
+[Mozilla/5.0 NewsFox/*]
+Parent="Feeds Syndicators"
+Browser="NewsFox"
+
+[Netvibes (*)]
+Parent="Feeds Syndicators"
+Browser="Netvibes"
+
+[NewsAlloy/* (*)]
+Parent="Feeds Syndicators"
+Browser="NewsAlloy"
+
+[Omnipelagos*]
+Parent="Feeds Syndicators"
+Browser="Omnipelagos"
+
+[Particls]
+Parent="Feeds Syndicators"
+Browser="Particls"
+
+[Protopage/* (*)]
+Parent="Feeds Syndicators"
+Browser="Protopage"
+
+[PubSub-RSS-Reader/* (*)]
+Parent="Feeds Syndicators"
+Browser="PubSub-RSS-Reader"
+
+[RSS Menu/*]
+Parent="Feeds Syndicators"
+Browser="RSS Menu"
+
+[RssBandit/*]
+Parent="Feeds Syndicators"
+Browser="RssBandit"
+
+[RssBar/1.2*]
+Parent="Feeds Syndicators"
+Browser="RssBar"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[SharpReader/*]
+Parent="Feeds Syndicators"
+Browser="SharpReader"
+
+[Strategic Board Bot (?http://www.strategicboard.com)]
+Parent="Feeds Syndicators"
+Browser="Strategic Board Bot"
+
+[TargetYourNews.com bot]
+Parent="Feeds Syndicators"
+Browser="TargetYourNews"
+
+[Technoratibot/*]
+Parent="Feeds Syndicators"
+Browser="Technoratibot"
+
+[Tumblr/* RSS syndication ( http://www.tumblr.com/) (support@tumblr.com)]
+Parent="Feeds Syndicators"
+Browser="Tumblr RSS syndication"
+
+[Wizz RSS News Reader]
+Parent="Feeds Syndicators"
+Browser="Wizz"
+
+[Mozilla/* (*Genieo*/1.0*)]
+Parent="Feeds Syndicators"
+Browser="Genieo RSS Reader"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/* (*Genieo*/*)]
+Parent="Feeds Syndicators"
+Browser="Genieo RSS Reader"
+
+[FeedBlitz/1.*]
+Parent="Feeds Syndicators"
+Browser="FeedBlitz"
+Version="1.0"
+MajorVer=1
+
+[FeedBlitz/*]
+Parent="Feeds Syndicators"
+Browser="FeedBlitz"
+
+[FeeddlerRSS 2.4 (iPad*iPhone OS?7?1*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[FeeddlerRSS 2.4 (iPad*iPhone OS?8?0*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[FeeddlerRSS 2.4 (*iPhone OS?7?1*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[FeeddlerRSS 2.4 (*iPhone OS?8?0*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[FeeddlerRSS * (iPad*iPhone OS?7?1*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[FeeddlerRSS * (iPad*iPhone OS?8?0*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[FeeddlerRSS * (*iPhone OS?7?1*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[FeeddlerRSS * (*iPhone OS?8?0*)]
+Parent="Feeds Syndicators"
+Browser="Feeddler RSS Reader"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[FeedForAll rss2html.php v2]
+Parent="Feeds Syndicators"
+Browser="RSS2HTML"
+Version="2.0"
+MajorVer=2
+
+[FeedForAll rss2html.php*]
+Parent="Feeds Syndicators"
+Browser="RSS2HTML"
+
+[FeedlyApp/1.0*]
+Parent="Feeds Syndicators"
+Browser="feedly App"
+Version="1.0"
+MajorVer=1
+
+[FeedlyApp/*]
+Parent="Feeds Syndicators"
+Browser="feedly App"
+
+[Feedly/1.0*]
+Parent="Feeds Syndicators"
+Browser="feedly Feed Fetcher"
+Version="1.0"
+MajorVer=1
+
+[Feedly/*]
+Parent="Feeds Syndicators"
+Browser="feedly Feed Fetcher"
+
+[Mozilla/5.0 (compatible; theoldreader.com*]
+Parent="Feeds Syndicators"
+Browser="The Old Reader"
+
+[NewsBlur Favicon Fetcher*Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[NewsBlur Favicon Fetcher*Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[NewsBlur Favicon Fetcher*Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[NewsBlur Favicon Fetcher*Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[NewsBlur Feed Fetcher*Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[NewsBlur Feed Fetcher*Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[NewsBlur Feed Fetcher*Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[NewsBlur Feed Fetcher*Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[NewsBlur Page Fetcher*Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[NewsBlur Page Fetcher*Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[NewsBlur Page Fetcher*Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[NewsBlur Page Fetcher*Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Feeds Syndicators"
+Browser="NewsBlur Favicon Fetcher"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Superfeedr bot/2.0*]
+Parent="Feeds Syndicators"
+Browser="Superfeedr Bot"
+Version="2.0"
+MajorVer=2
+
+[Superfeedr bot/*]
+Parent="Feeds Syndicators"
+Browser="Superfeedr Bot"
+
+[Blogshares Spiders (Renewed V1.65*]
+Parent="Feeds Syndicators"
+Browser="Blogshares Spiders"
+Version="1.65"
+MajorVer=1
+MinorVer=65
+
+[Blogshares Spiders*]
+Parent="Feeds Syndicators"
+Browser="Blogshares Spiders"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SimplePie
+
+[SimplePie]
+Parent="DefaultProperties"
+Comment="Feeds Syndicators"
+Browser="SimplePie"
+isSyndicationReader="true"
+Crawler="true"
+
+[SimplePie/1.2*]
+Parent="SimplePie"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[SimplePie/*]
+Parent="SimplePie"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; General RSS
+
+[General RSS]
+Parent="DefaultProperties"
+Comment="General RSS"
+Browser="General RSS"
+isSyndicationReader="true"
+Crawler="true"
+
+[BlijbolReallySimpleAggregator/2.0*]
+Parent="General RSS"
+Browser="BlijbolReallySimpleAggregator"
+
+[CC Metadata Scaper http://wiki.creativecommons.org/Metadata_Scraper]
+Parent="General RSS"
+Browser="CC Metadata Scaper"
+
+[Mozilla/5.0 (compatible) GM RSS Panel]
+Parent="General RSS"
+Browser="RSS Panel"
+
+[Mozilla/5.0 http://www.inclue.com; graeme@inclue.com]
+Parent="General RSS"
+Browser="Inclue"
+
+[Runnk online rss reader : http://www.runnk.com/ : RSS favorites : RSS ranking : RSS aggregator*]
+Parent="General RSS"
+Browser="Ruunk"
+
+[UniversalFeedParser/4.1*]
+Parent="General RSS"
+Browser="UniversalFeedParser"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[UniversalFeedParser/4.*]
+Parent="General RSS"
+Browser="UniversalFeedParser"
+Version="4.0"
+MajorVer=4
+
+[UniversalFeedParser/5.1*]
+Parent="General RSS"
+Browser="UniversalFeedParser"
+Version="5.1"
+MajorVer=5
+MinorVer=1
+
+[UniversalFeedParser/5.*]
+Parent="General RSS"
+Browser="UniversalFeedParser"
+Version="5.0"
+MajorVer=5
+
+[RSSOwl/*]
+Parent="General RSS"
+Browser="RSSOwl"
+
+[HiddenMarket-*]
+Parent="General RSS"
+Browser="HiddenMarket"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Shrook/*]
+Parent="General RSS"
+Browser="Shrook"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Shrook/*]
+Parent="General RSS"
+Browser="Shrook"
+Platform="MacOSX"
+Platform_Version=10
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.5
+
+[akregator 4.5]
+Parent="DefaultProperties"
+Comment="akregator 4.5"
+Browser="akregator"
+Version="4.5"
+MajorVer=4
+MinorVer=5
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.5* Safari/*]
+Parent="akregator 4.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.6
+
+[akregator 4.6]
+Parent="DefaultProperties"
+Comment="akregator 4.6"
+Browser="akregator"
+Version="4.6"
+MajorVer=4
+MinorVer=6
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.6* Safari/*]
+Parent="akregator 4.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.7
+
+[akregator 4.7]
+Parent="DefaultProperties"
+Comment="akregator 4.7"
+Browser="akregator"
+Version="4.7"
+MajorVer=4
+MinorVer=7
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.7* Safari/*]
+Parent="akregator 4.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.8
+
+[akregator 4.8]
+Parent="DefaultProperties"
+Comment="akregator 4.8"
+Browser="akregator"
+Version="4.8"
+MajorVer=4
+MinorVer=8
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.8* Safari/*]
+Parent="akregator 4.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.9
+
+[akregator 4.9]
+Parent="DefaultProperties"
+Comment="akregator 4.9"
+Browser="akregator"
+Version="4.9"
+MajorVer=4
+MinorVer=9
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.9* Safari/*]
+Parent="akregator 4.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.10
+
+[akregator 4.10]
+Parent="DefaultProperties"
+Comment="akregator 4.10"
+Browser="akregator"
+Version="4.10"
+MajorVer=4
+MinorVer=10
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.10* Safari/*]
+Parent="akregator 4.10"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.11
+
+[akregator 4.11]
+Parent="DefaultProperties"
+Comment="akregator 4.11"
+Browser="akregator"
+Version="4.11"
+MajorVer=4
+MinorVer=11
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.11* Safari/*]
+Parent="akregator 4.11"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.12
+
+[akregator 4.12]
+Parent="DefaultProperties"
+Comment="akregator 4.12"
+Browser="akregator"
+Version="4.12"
+MajorVer=4
+MinorVer=12
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.12* Safari/*]
+Parent="akregator 4.12"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.13
+
+[akregator 4.13]
+Parent="DefaultProperties"
+Comment="akregator 4.13"
+Browser="akregator"
+Version="4.13"
+MajorVer=4
+MinorVer=13
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.13* Safari/*]
+Parent="akregator 4.13"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; akregator 4.14
+
+[akregator 4.14]
+Parent="DefaultProperties"
+Comment="akregator 4.14"
+Browser="akregator"
+Version="4.14"
+MajorVer=4
+MinorVer=14
+Platform="Linux"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11;) AppleWebKit/* (KHTML, like Gecko) akregator/4.14* Safari/*]
+Parent="akregator 4.14"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Validation Checkers
+
+[HTML Validators]
+Parent="DefaultProperties"
+Comment="Validation Checkers"
+Browser="HTML Validators"
+Crawler="true"
+
+[(HTML Validator http://www.searchengineworld.com/validator/)]
+Parent="HTML Validators"
+Browser="Search Engine World HTML Validator"
+
+[FeedValidator/*]
+Parent="HTML Validators"
+Browser="FeedValidator"
+
+[Search Engine World Robots.txt Validator*]
+Parent="HTML Validators"
+Browser="Search Engine World Robots.txt Validator"
+
+[Weblide/*]
+Parent="HTML Validators"
+Browser="Weblide"
+Beta="true"
+
+[WebmasterWorld StickyMail Server Header Checker*]
+Parent="HTML Validators"
+Browser="WebmasterWorld Server Header Checker"
+
+[WWWC/*]
+Parent="HTML Validators"
+Browser="WWWC"
+
+[WDG_Validator/1.6*]
+Parent="HTML Validators"
+Browser="WDG HTML Validator"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[WDG_Validator/*]
+Parent="HTML Validators"
+Browser="WDG HTML Validator"
+
+[Mozilla/5.0 (compatible; Qualidator.com Bot 1.0*]
+Parent="HTML Validators"
+Browser="Qualidator.com Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Qualidator.com Bot*]
+Parent="HTML Validators"
+Browser="Qualidator.com Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Image Crawlers
+
+[Image Crawlers]
+Parent="DefaultProperties"
+Comment="Image Crawlers"
+Browser="Image Crawlers"
+Crawler="true"
+
+[*CFNetwork*]
+Parent="Image Crawlers"
+Browser="CFNetwork"
+
+[*PhotoStickies/*]
+Parent="Image Crawlers"
+Browser="PhotoStickies"
+
+[Camcrawler*]
+Parent="Image Crawlers"
+Browser="Camcrawler"
+
+[CydralSpider/*]
+Parent="Image Crawlers"
+Browser="Cydral Web Image Search"
+
+[Der gro?xdfe BilderSauger*]
+Parent="Image Crawlers"
+Browser="Gallery Grabber"
+
+[Extreme Picture Finder]
+Parent="Image Crawlers"
+Browser="Extreme Picture Finder"
+
+[FLATARTS_FAVICO]
+Parent="Image Crawlers"
+Browser="FlatArts Favorites Icon Tool"
+
+[HTML2JPG Blackbox, http://www.html2jpg.com]
+Parent="Image Crawlers"
+Browser="HTML2JPG"
+
+[IconSurf/2.*]
+Parent="Image Crawlers"
+Browser="IconSurf"
+
+[Mister PIX*]
+Parent="Image Crawlers"
+Browser="Mister PIX"
+
+[Mozilla/5.0 (compatible; KaloogaBot; http://www.kalooga.com/info.html?page=crawler)]
+Parent="Image Crawlers"
+Browser="KaloogaBot"
+
+[Mozilla/5.0 (Macintosh; U; *Mac OS X; *) AppleWebKit/* (*) Pandora/2.*]
+Parent="Image Crawlers"
+Browser="Pandora"
+
+[naoFavicon4IE*]
+Parent="Image Crawlers"
+Browser="naoFavicon4IE"
+
+[pixfinder/*]
+Parent="Image Crawlers"
+Browser="pixfinder"
+
+[psbot-image*]
+Parent="Image Crawlers"
+Browser="Psbot"
+
+[psbot-page*]
+Parent="Image Crawlers"
+Browser="Psbot"
+
+[psbot/*]
+Parent="Image Crawlers"
+Browser="Psbot"
+
+[rssImagesBot/0.1 (*http://herbert.groot.jebbink.nl/?app=rssImages)]
+Parent="Image Crawlers"
+Browser="rssImagesBot"
+
+[Web Image Collector*]
+Parent="Image Crawlers"
+Browser="Web Image Collector"
+
+[WebImages * (?http://herbert.groot.jebbink.nl/?app=WebImages?)]
+Parent="Image Crawlers"
+Browser="WebImages"
+
+[WebPix*]
+Parent="Image Crawlers"
+Browser="Custo"
+
+[FOTOCHECKER]
+Parent="Image Crawlers"
+Browser="FOTOCHECKER"
+
+[Evernote Clip Resolver*]
+Parent="Image Crawlers"
+Browser="Evernote Clip Resolver"
+
+[Thumbor/3.14*]
+Parent="Image Crawlers"
+Browser="Thumbor"
+Version="3.14"
+MajorVer=3
+MinorVer=14
+
+[Thumbor/*]
+Parent="Image Crawlers"
+Browser="Thumbor"
+
+[TinEye-bot/0.02*]
+Parent="Image Crawlers"
+Browser="TinEye Bot"
+Version="0.02"
+MinorVer=02
+
+[TinEye-bot/*]
+Parent="Image Crawlers"
+Browser="TinEye Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Link Checkers
+
+[Link Checkers]
+Parent="DefaultProperties"
+Comment="Link Checkers"
+Browser="Link Checkers"
+Crawler="true"
+
+[!Susie (http://www.sync2it.com/susie)]
+Parent="Link Checkers"
+Browser="!Susie"
+
+[*AgentName/*]
+Parent="Link Checkers"
+Browser="AgentName"
+
+[*Linkman*]
+Parent="Link Checkers"
+Browser="Linkman"
+
+[*LinksManager.com*]
+Parent="Link Checkers"
+Browser="LinksManager"
+
+[*Web Link Validator*]
+Parent="Link Checkers"
+Browser="Web Link Validator"
+
+[*Zeus*]
+Parent="Link Checkers"
+Browser="Zeus"
+
+[ActiveBookmark *]
+Parent="Link Checkers"
+Browser="ActiveBookmark"
+
+[Bookdog/*]
+Parent="Link Checkers"
+Browser="Bookdog"
+
+[Bookmark Buddy*]
+Parent="Link Checkers"
+Browser="Bookmark Buddy"
+
+[Bookmark Renewal Check Agent*]
+Parent="Link Checkers"
+Browser="Bookmark Renewal Check Agent"
+
+[Bookmark search tool*]
+Parent="Link Checkers"
+Browser="Bookmark search tool"
+
+[Bookmark-Manager]
+Parent="Link Checkers"
+Browser="Bookmark-Manager"
+
+[Checkbot*]
+Parent="Link Checkers"
+Browser="Checkbot"
+
+[CheckLinks/*]
+Parent="Link Checkers"
+Browser="CheckLinks"
+
+[CyberSpyder Link Test/*]
+Parent="Link Checkers"
+Browser="CyberSpyder Link Test"
+
+[DLC/*]
+Parent="Link Checkers"
+Browser="DLC"
+
+[DocWeb Link Crawler (http://doc.php.net)]
+Parent="Link Checkers"
+Browser="DocWeb Link Crawler"
+
+[FavOrg]
+Parent="Link Checkers"
+Browser="FavOrg"
+
+[Favorites Sweeper v.3.*]
+Parent="Link Checkers"
+Browser="Favorites Sweeper"
+
+[Funnel Web Profiler*]
+Parent="Link Checkers"
+Browser="Funnel Web Profiler"
+
+[Html Link Validator (www.lithopssoft.com)]
+Parent="Link Checkers"
+Browser="HTML Link Validator"
+
+[IECheck]
+Parent="Link Checkers"
+Browser="IECheck"
+
+[integrity/*]
+Parent="Link Checkers"
+Browser="Integrity"
+Platform="MacOSX"
+Platform_Version=10
+
+[JCheckLinks/*]
+Parent="Link Checkers"
+Browser="JCheckLinks"
+
+[JRTwine Software Check Favorites Utility]
+Parent="Link Checkers"
+Browser="JRTwine"
+
+[Link Valet Online*]
+Parent="Link Checkers"
+Browser="Link Valet"
+
+[LinkAlarm/*]
+Parent="Link Checkers"
+Browser="LinkAlarm"
+
+[Linkbot*]
+Parent="Link Checkers"
+Browser="Linkbot"
+
+[LinkextractorPro*]
+Parent="Link Checkers"
+Browser="LinkextractorPro"
+
+[LinkLint-checkonly/*]
+Parent="Link Checkers"
+Browser="LinkLint"
+
+[LinkScan/*]
+Parent="Link Checkers"
+Browser="LinkScan"
+
+[LinkSweeper/*]
+Parent="Link Checkers"
+Browser="LinkSweeper"
+
+[LinkWalker*]
+Parent="Link Checkers"
+Browser="LinkWalker"
+
+[MetaGer-LinkChecker]
+Parent="Link Checkers"
+Browser="MetaGer-LinkChecker"
+
+[Mozilla/5.0 (compatible; metager2-verification-bot*]
+Parent="Link Checkers"
+Browser="metager2-verification-bot"
+
+[Mozilla/* (compatible; linktiger/*; *http://www.linktiger.com*)]
+Parent="Link Checkers"
+Browser="LinkTiger"
+
+[Mozilla/4.0 (Compatible); URLBase*]
+Parent="Link Checkers"
+Browser="URLBase"
+
+[Mozilla/4.0 (compatible; Link Utility; http://net-promoter.com)]
+Parent="Link Checkers"
+Browser="NetPromoter Link Utility"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows 98) Web Link Validator*]
+Parent="Link Checkers"
+Browser="Web Link Validator"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Win32) Link Commander 3.0]
+Parent="Link Checkers"
+Browser="Link Commander"
+Version="3.0"
+MajorVer=3
+Platform="Win32"
+Win32="true"
+
+[Mozilla/4.0 (compatible; smartBot/1.*; checking links; *)]
+Parent="Link Checkers"
+Browser="smartBot"
+
+[Mozilla/4.0 (compatible; SuperCleaner*;*)]
+Parent="Link Checkers"
+Browser="SuperCleaner"
+
+[Mozilla/5.0 gURLChecker/*]
+Parent="Link Checkers"
+Browser="gURLChecker"
+
+[Newsgroupreporter LinkCheck]
+Parent="Link Checkers"
+Browser="Newsgroupreporter LinkCheck"
+
+[onCHECK Linkchecker von www.scientec.de fuer www.onsinn.de]
+Parent="Link Checkers"
+Browser="onCHECK Linkchecker"
+
+[online link validator (http://www.dead-links.com/)]
+Parent="Link Checkers"
+Browser="Dead-Links.com"
+
+[REL Link Checker*]
+Parent="Link Checkers"
+Browser="REL Link Checker"
+
+[RLinkCheker*]
+Parent="Link Checkers"
+Browser="RLinkCheker"
+
+[Robozilla/*]
+Parent="Link Checkers"
+Browser="Robozilla"
+
+[SafariBookmarkChecker*(?http://www.coriolis.ch/)]
+Parent="Link Checkers"
+Browser="SafariBookmarkChecker"
+Platform="MacOSX"
+Platform_Version=10
+CssVersion=2
+
+[Simpy/* (Simpy; http://www.simpy.com/?ref=bot; feedback at simpy dot com)]
+Parent="Link Checkers"
+Browser="Simpy"
+
+[SiteBar/*]
+Parent="Link Checkers"
+Browser="SiteBar"
+
+[Susie (http://www.sync2it.com/bms/susie.php]
+Parent="Link Checkers"
+Browser="Susie"
+
+[URLBase/*]
+Parent="Link Checkers"
+Browser="URLBase"
+
+[VSE/*]
+Parent="Link Checkers"
+Browser="VSE Link Tester"
+
+[WebTrends Link Analyzer]
+Parent="Link Checkers"
+Browser="WebTrends Link Analyzer"
+
+[WorQmada/*]
+Parent="Link Checkers"
+Browser="WorQmada"
+
+[Xenu* Link Sleuth*]
+Parent="Link Checkers"
+Browser="Xenus Link Sleuth"
+
+[Z-Add Link Checker*]
+Parent="Link Checkers"
+Browser="Z-Add Link Checker"
+
+[Mozilla/5.0 TYPO3-linkvalidator*]
+Parent="Link Checkers"
+Browser="TYPO3 Linkvalidator"
+
+[Mozilla/5.0 (compatible; pmoz.info ODP link checker*]
+Parent="Link Checkers"
+Browser="pmoz.info ODP link checker"
+
+[eZ Publish Link Validator]
+Parent="Link Checkers"
+Browser="eZ Publish Link Validator"
+
+[LinksCrawler 0.1*]
+Parent="Link Checkers"
+Browser="LinksCrawler"
+Version="0.1"
+MinorVer=1
+
+[LinksCrawler *]
+Parent="Link Checkers"
+Browser="LinksCrawler"
+
+[Mozilla/5.0 (compatible; Sophora Linkchecker*]
+Parent="Link Checkers"
+Browser="Sophora Linkchecker"
+
+[Mozilla/5.0 (compatible; MOSBookmarks/v2.6*]
+Parent="Link Checkers"
+Browser="MOSBookmarks Link Checker"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[Mozilla/5.0 (compatible; MOSBookmarks/v2.7*]
+Parent="Link Checkers"
+Browser="MOSBookmarks Link Checker"
+Version="2.7"
+MajorVer=2
+MinorVer=7
+
+[Mozilla/5.0 (compatible; MOSBookmarks/v2.8*]
+Parent="Link Checkers"
+Browser="MOSBookmarks Link Checker"
+Version="2.8"
+MajorVer=2
+MinorVer=8
+
+[Mozilla/5.0 (compatible; MOSBookmarks/*]
+Parent="Link Checkers"
+Browser="MOSBookmarks Link Checker"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Powermarks
+
+[Powermarks]
+Parent="DefaultProperties"
+Comment="Link Checkers"
+Browser="Powermarks"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; Powermarks/3.5*]
+Parent="Powermarks"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+
+[Mozilla/4.0 (compatible; Powermarks/*]
+Parent="Powermarks"
+
+[*Powermarks/3.5*]
+Parent="Powermarks"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+
+[*Powermarks/*]
+Parent="Powermarks"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft
+
+[Microsoft]
+Parent="DefaultProperties"
+Comment="Microsoft"
+Browser="Microsoft"
+Crawler="true"
+
+[Live (http://www.live.com/)]
+Parent="Microsoft"
+Browser="Microsoft Live"
+isSyndicationReader="true"
+
+[MFC Foundation Class Library*]
+Parent="Microsoft"
+Browser="MFC Foundation Class Library"
+
+[MFHttpScan]
+Parent="Microsoft"
+Browser="MFHttpScan"
+
+[Microsoft BITS/*]
+Parent="Microsoft"
+Browser="BITS"
+
+[Microsoft Data Access Internet Publishing Provider Cache Manager]
+Parent="Microsoft"
+Browser="MS IPP"
+
+[Microsoft Data Access Internet Publishing Provider DAV*]
+Parent="Microsoft"
+Browser="MS IPP DAV"
+
+[Microsoft Data Access Internet Publishing Provider Protocol Discovery]
+Parent="Microsoft"
+Browser="MS IPPPD"
+
+[Microsoft Office Existence Discovery]
+Parent="Microsoft"
+Browser="Microsoft Office Existence Discovery"
+
+[Microsoft Office Protocol Discovery]
+Parent="Microsoft"
+Browser="MS OPD"
+
+[Microsoft Office/* (*Picture Manager*)]
+Parent="Microsoft"
+Browser="Microsoft Office Picture Manager"
+
+[Microsoft URL Control*]
+Parent="Microsoft"
+Browser="Microsoft URL Control"
+
+[Microsoft Visio MSIE]
+Parent="Microsoft"
+Browser="Microsoft Visio"
+
+[Microsoft-WebDAV-MiniRedir/6.1*]
+Parent="Microsoft"
+Browser="Microsoft-WebDAV"
+Version="6.1"
+MajorVer=6
+MinorVer=1
+
+[Microsoft-WebDAV-MiniRedir/*]
+Parent="Microsoft"
+Browser="Microsoft-WebDAV"
+
+[DavClnt*]
+Parent="Microsoft"
+Browser="Microsoft-WebDAV"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[MSN Feed Manager]
+Parent="Microsoft"
+Browser="MSN Feed Manager"
+isSyndicationReader="true"
+
+[MSProxy/*]
+Parent="Microsoft"
+Browser="MS Proxy"
+
+[iisbot/1.0*]
+Parent="Microsoft"
+Browser="IIS Site Analysis Web Crawler"
+Version="1.0"
+MajorVer=1
+
+[iisbot/*]
+Parent="Microsoft"
+Browser="IIS Site Analysis Web Crawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Miscellaneous Browsers
+
+[Miscellaneous Browsers]
+Parent="DefaultProperties"
+Comment="Miscellaneous Browsers"
+Browser="Miscellaneous Browsers"
+Crawler="true"
+
+[*Amiga*]
+Parent="Miscellaneous Browsers"
+Browser="Amiga"
+Platform="Amiga OS"
+
+[*avantbrowser*]
+Parent="Miscellaneous Browsers"
+Browser="Avant Browser"
+
+[12345*]
+Parent="Miscellaneous Browsers"
+Browser="12345"
+
+[1st ZipCommander (Net) - http://www.zipcommander.com/]
+Parent="Miscellaneous Browsers"
+Browser="1st ZipCommander"
+
+[Ace Explorer]
+Parent="Miscellaneous Browsers"
+Browser="Ace Explorer"
+
+[Enigma Browser*]
+Parent="Miscellaneous Browsers"
+Browser="Enigma Browser"
+
+[EVE-minibrowser/*]
+Parent="Miscellaneous Browsers"
+Browser="EVE-minibrowser"
+Crawler="false"
+
+[Godzilla/* (Basic*; *; Commodore C=64; *; rv:1.*)*]
+Parent="Miscellaneous Browsers"
+Browser="Godzilla"
+
+[GreenBrowser]
+Parent="Miscellaneous Browsers"
+Browser="GreenBrowser"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Kopiczek/* (WyderOS*; *)]
+Parent="Miscellaneous Browsers"
+Browser="Kopiczek"
+Platform="WyderOS"
+IFrames="true"
+VBScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/* (*) - BrowseX (*)]
+Parent="Miscellaneous Browsers"
+Browser="BrowseX"
+
+[Mozilla/* (Win32;*Escape?*; ?)]
+Parent="Miscellaneous Browsers"
+Browser="Escape"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/4.0 (compatible; ibisBrowser)]
+Parent="Miscellaneous Browsers"
+Browser="ibisBrowser"
+
+[Mozilla/5.0 (Macintosh; ?; PPC Mac OS X;*) AppleWebKit/* (*) HistoryHound/*]
+Parent="Miscellaneous Browsers"
+Browser="HistoryHound"
+
+[NetRecorder*]
+Parent="Miscellaneous Browsers"
+Browser="NetRecorder"
+
+[NetSurf*]
+Parent="Miscellaneous Browsers"
+Browser="NetSurf"
+
+[ogeb browser , Version 1.1.0]
+Parent="Miscellaneous Browsers"
+Browser="ogeb browser"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[SCEJ PSP BROWSER 0102pspNavigator]
+Parent="Miscellaneous Browsers"
+Browser="Wipeout Pure"
+
+[SlimBrowser]
+Parent="Miscellaneous Browsers"
+Browser="SlimBrowser"
+
+[WWW_Browser/*]
+Parent="Miscellaneous Browsers"
+Browser="WWW Browser"
+Version="1.69"
+MajorVer=1
+MinorVer=69
+Platform="Win16"
+Win16="true"
+CssVersion=3
+
+[*CaptiveNetworkSupport*wispr*]
+Parent="Miscellaneous Browsers"
+Browser="WISPr"
+
+[WEB.DE MailCheck/2.4*]
+Parent="Miscellaneous Browsers"
+Browser="WEB.DE MailCheck"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+
+[WEB.DE MailCheck/*]
+Parent="Miscellaneous Browsers"
+Browser="WEB.DE MailCheck"
+
+[GMX MailCheck/2.3*]
+Parent="Miscellaneous Browsers"
+Browser="GMX MailCheck"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+
+[GMX MailCheck/2.4*]
+Parent="Miscellaneous Browsers"
+Browser="GMX MailCheck"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+
+[GMX MailCheck/*]
+Parent="Miscellaneous Browsers"
+Browser="GMX MailCheck"
+
+[T-Online Browser]
+Parent="Miscellaneous Browsers"
+Browser="T-Online Browser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NetNewsWire
+
+[NetNewsWire]
+Parent="DefaultProperties"
+Comment="NetNewsWire"
+Browser="NetNewsWire"
+Platform="MacOSX"
+Platform_Version=10
+Frames="true"
+IFrames="true"
+Tables="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[*NetNewsWire/3.3*]
+Parent="NetNewsWire"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+
+[NetNewsWire*/*]
+Parent="NetNewsWire"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) NetNewsWire/2.0*]
+Parent="NetNewsWire"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) NetNewsWire/2.1*]
+Parent="NetNewsWire"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) NetNewsWire/3.0*]
+Parent="NetNewsWire"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) NetNewsWire/3.1*]
+Parent="NetNewsWire"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) NetNewsWire/3.2*]
+Parent="NetNewsWire"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) *NetNewsWire/4.0*]
+Parent="NetNewsWire"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko) *NetNewsWire*]
+Parent="NetNewsWire"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; findlinks
+
+[findlinks]
+Parent="DefaultProperties"
+Comment="FindLinks"
+Browser="FindLinks"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[findlinks/2.6*]
+Parent="findlinks"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+
+[findlinks/*]
+Parent="findlinks"
+
+[FindLinks/*]
+Parent="findlinks"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Offline Browsers
+
+[Offline Browsers]
+Parent="DefaultProperties"
+Comment="Offline Browsers"
+Browser="Offline Browsers"
+Crawler="true"
+
+[*Check&Get*]
+Parent="Offline Browsers"
+Browser="Check&Get"
+
+[Mozilla/* (compatible; HTTrack 3.*Windows 98*]
+Parent="Offline Browsers"
+Browser="HTTrack"
+Version="3.0"
+MajorVer=3
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/* (compatible; HTTrack 3.*]
+Parent="Offline Browsers"
+Browser="HTTrack"
+Version="3.0"
+MajorVer=3
+
+[*HTTrack 3.*]
+Parent="Offline Browsers"
+Browser="HTTrack"
+Version="3.0"
+MajorVer=3
+
+[*HTTrack*]
+Parent="Offline Browsers"
+Browser="HTTrack"
+
+[*MSIECrawler*]
+Parent="Offline Browsers"
+Browser="IE Offline Browser"
+
+[*TweakMASTER*]
+Parent="Offline Browsers"
+Browser="TweakMASTER"
+
+[BackStreet Browser *]
+Parent="Offline Browsers"
+Browser="BackStreet Browser"
+
+[Go-Ahead-Got-It*]
+Parent="Offline Browsers"
+Browser="Go Ahead Got-It"
+
+[iGetter/*]
+Parent="Offline Browsers"
+Browser="iGetter"
+
+[Teleport*]
+Parent="Offline Browsers"
+Browser="Teleport"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Online Scanners
+
+[Online Scanners]
+Parent="DefaultProperties"
+Comment="Online Scanners"
+Browser="Online Scanners"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[JoeDog/* (X11; I; Siege *)]
+Parent="Online Scanners"
+Browser="JoeDog"
+
+[Morfeus Fucking Scanner]
+Parent="Online Scanners"
+Browser="Morfeus Fucking Scanner"
+
+[Mozilla/4.0 (compatible; Trend Micro tmdr 1.*]
+Parent="Online Scanners"
+Browser="Trend Micro"
+
+[Titanium 2005 (4.02.01)]
+Parent="Online Scanners"
+Browser="Panda Antivirus Titanium"
+
+[virus_detector*]
+Parent="Online Scanners"
+Browser="Secure Computing Corporation"
+
+[WhatWeb/0.4*]
+Parent="Online Scanners"
+Browser="WhatWeb Web Scanner"
+Version="0.4"
+MinorVer=4
+
+[WhatWeb/*]
+Parent="Online Scanners"
+Browser="WhatWeb Web Scanner"
+
+[Mozilla/5.0 (compatible; Nmap Scripting Engine*]
+Parent="Online Scanners"
+Browser="Nmap Scripting Engine"
+
+[Mozilla/5.0 (compatible; CloudFlare-AlwaysOnline/1.0*]
+Parent="Online Scanners"
+Browser="CloudFlare AlwaysOnline"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; CloudFlare-AlwaysOnline/*]
+Parent="Online Scanners"
+Browser="CloudFlare AlwaysOnline"
+
+[FirstSearchBot]
+Parent="General Crawlers"
+Comment="General Crawlers"
+Browser="FirstSearchBot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; FirstSearchBot/1.0; *)]
+Parent="FirstSearchBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; FirstSearchBot/*)]
+Parent="FirstSearchBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Proxy Servers
+
+[Proxy Servers]
+Parent="DefaultProperties"
+Comment="Proxy Servers"
+Browser="Proxy Servers"
+Crawler="true"
+
+[*squid*]
+Parent="Proxy Servers"
+Browser="Squid"
+
+[CE-Preload]
+Parent="Proxy Servers"
+Browser="CE-Preload"
+
+[IE/6.01 (CP/M; 8-bit*)]
+Parent="Proxy Servers"
+Browser="Squid"
+
+[Mozilla/* (TuringOS; Turing Machine; 0.0)]
+Parent="Proxy Servers"
+Browser="Anonymizer"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; SaferSurf*)]
+Parent="Proxy Servers"
+Browser="SaferSurf"
+
+[Nutscrape]
+Parent="Proxy Servers"
+Browser="Squid"
+
+[Nutscrape/* (CP/M; 8-bit*)]
+Parent="Proxy Servers"
+Browser="Squid"
+
+[Privoxy/*]
+Parent="Proxy Servers"
+Browser="Privoxy"
+
+[ProxyTester*]
+Parent="Proxy Servers"
+Browser="ProxyTester"
+
+[SilentSurf*]
+Parent="Proxy Servers"
+Browser="SilentSurf"
+
+[SmallProxy*]
+Parent="Proxy Servers"
+Browser="SmallProxy"
+
+[Space*Bison/*]
+Parent="Proxy Servers"
+Browser="Proxomitron"
+
+[Sqworm/*]
+Parent="Proxy Servers"
+Browser="Websense"
+
+[SurfControl]
+Parent="Proxy Servers"
+Browser="SurfControl"
+
+[CoralWebPrx*]
+Parent="Proxy Servers"
+Browser="CoralWeb Proxy"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; SaferSurf*)]
+Parent="Proxy Servers"
+Browser="SaferSurf"
+
+[Mozilla/4.0 (compatible; Synapse)]
+Parent="Proxy Servers"
+Browser="Apache Synapse"
+
+[Mozilla/5.0 (*CrOS*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) Gecko/* Firefox/* (FlipboardProxy/1.1*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*CrOS*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) Gecko/* Firefox/* (FlipboardProxy/*]
+Parent="Proxy Servers"
+Browser="FlipboardProxy"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Research Projects
+
+[Research Projects]
+Parent="DefaultProperties"
+Comment="Research Projects"
+Browser="Research Projects"
+Crawler="true"
+
+[AcadiaUniversityWebCensusClient]
+Parent="Research Projects"
+Browser="AcadiaUniversityWebCensusClient"
+
+[Amico Alpha * (*) Gecko/* AmicoAlpha/*]
+Parent="Research Projects"
+Browser="Amico Alpha"
+
+[annotate_google; http://ponderer.org/*]
+Parent="Research Projects"
+Browser="Annotate Google"
+
+[CMS crawler (?http://buytaert.net/crawler/)]
+Parent="Research Projects"
+
+[e-SocietyRobot(http://www.yama.info.waseda.ac.jp/~yamana/es/)]
+Parent="Research Projects"
+Browser="e-SocietyRobot"
+
+[Forschungsportal/*]
+Parent="Research Projects"
+Browser="Forschungsportal"
+
+[Gulper Web *]
+Parent="Research Projects"
+Browser="Gulper Web Bot"
+
+[HooWWWer/*]
+Parent="Research Projects"
+Browser="HooWWWer"
+
+[inetbot/* (?http://www.inetbot.com/bot.html)]
+Parent="Research Projects"
+Browser="inetbot"
+
+[IRLbot/1.0 (*http://irl.cs.tamu.edu/crawler*)]
+Parent="Research Projects"
+Browser="IRLbot"
+Version="1.0"
+MajorVer=1
+
+[IRLbot/2.0 (*http://irl.cs.tamu.edu/crawler*)]
+Parent="Research Projects"
+Version="2.0"
+MajorVer=2
+
+[IRLbot/3.0 (*http://irl.cs.tamu.edu/crawler*)]
+Parent="Research Projects"
+Version="3.0"
+MajorVer=3
+
+[JUST-CRAWLER(*)]
+Parent="Research Projects"
+Browser="JUST-CRAWLER"
+
+[Lachesis]
+Parent="Research Projects"
+Browser="Lachesis"
+
+[Mozilla/5.0 (compatible; nextthing.org/*)]
+Parent="Research Projects"
+Browser="nextthing.org"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Theophrastus/*)]
+Parent="Research Projects"
+Browser="Theophrastus"
+
+[Mozilla/5.0 (compatible; Webscan v0.*; +http://otc.dyndns.org/webscan/)]
+Parent="Research Projects"
+Browser="Webscan"
+
+[MQbot*]
+Parent="Research Projects"
+Browser="MQbot"
+
+[OutfoxBot/*]
+Parent="Research Projects"
+Browser="OutfoxBot"
+
+[polybot?*]
+Parent="Research Projects"
+Browser="Polybot"
+
+[Shim?Crawler*]
+Parent="Research Projects"
+Browser="Shim Crawler"
+
+[Steeler/*]
+Parent="Research Projects"
+Browser="Steeler"
+
+[Taiga web spider]
+Parent="Research Projects"
+Browser="Taiga"
+
+[Theme Spider*]
+Parent="Research Projects"
+Browser="Theme Spider"
+
+[UofTDB_experiment* (leehyun@cs.toronto.edu)]
+Parent="Research Projects"
+Browser="UofTDB Experiment"
+
+[USyd-NLP-Spider*]
+Parent="Research Projects"
+Browser="USyd-NLP-Spider"
+
+[woriobot*]
+Parent="Research Projects"
+Browser="woriobot"
+
+[Mozilla/5.0 (compatible; woriobot*]
+Parent="Research Projects"
+Browser="woriobot"
+
+[Mozilla/5.0 (compatible; zitebot*]
+Parent="Research Projects"
+Browser="zitebot"
+
+[wwwster/* (Beta, mailto:gue@cis.uni-muenchen.de)]
+Parent="Research Projects"
+Browser="wwwster"
+Beta="true"
+
+[Zao-Crawler]
+Parent="Research Projects"
+Browser="Zao-Crawler"
+
+[Zao/*]
+Parent="Research Projects"
+Browser="Zao"
+
+[Amico Alpha * (*Gecko/* AmicoAlpha/*]
+Parent="Research Projects"
+
+[IRLbot/*]
+Parent="Research Projects"
+
+[Cloud mapping experiment. Contact research@pdrlabs.net]
+Parent="Research Projects"
+Browser="pdrlabs Bot"
+
+[Finderlein Research Crawler 1.0*]
+Parent="Research Projects"
+Browser="Finderlein Research Crawler"
+Version="1.0"
+MajorVer=1
+
+[Finderlein Research Crawler*]
+Parent="Research Projects"
+Browser="Finderlein Research Crawler"
+
+[*research*]
+Parent="Research Projects"
+Browser="Generic Research Crawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Vulnerability Scanners
+
+[Vulnerability Scanners]
+Parent="DefaultProperties"
+Comment="Vulnerability Scanners"
+Browser="Vulnerability Scanners"
+Crawler="true"
+
+[BOT/0.1* (BOT for JCE)*]
+Parent="Vulnerability Scanners"
+Comment="JCE vulnerability scanner"
+Browser="BOT for JCE"
+Version="0.1"
+MinorVer=1
+
+[BOT/* (BOT for JCE)*]
+Parent="Vulnerability Scanners"
+Comment="JCE vulnerability scanner"
+Browser="BOT for JCE"
+
+[Mozilla/5.0 (FHScan Core 1.1*]
+Parent="Vulnerability Scanners"
+Comment="Fast HTTP Vulnerability scanner core api"
+Browser="FHScan Core"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (FHScan Core *]
+Parent="Vulnerability Scanners"
+Comment="Fast HTTP Vulnerability scanner core api"
+Browser="FHScan Core"
+
+[Mozilla/4.75 *OpenVAS*]
+Parent="Vulnerability Scanners"
+Browser="Open Vulnerability Assessment System"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rippers
+
+[Rippers]
+Parent="DefaultProperties"
+Comment="Rippers"
+Browser="Ripper"
+Crawler="true"
+
+[*grub*]
+Parent="Rippers"
+Browser="grub"
+
+[*ickHTTP*]
+Parent="Rippers"
+Browser="IP*Works"
+
+[Ruby]
+Parent="Rippers"
+Browser="Generic Ruby Crawler"
+
+[*WebGrabber*]
+Parent="Rippers"
+Browser="WebGrabber"
+
+[3D-FTP/*]
+Parent="Rippers"
+Browser="3D-FTP"
+
+[3wGet/*]
+Parent="Rippers"
+Browser="3wGet"
+
+[ActiveRefresh*]
+Parent="Rippers"
+Browser="ActiveRefresh"
+
+[Ad Muncher*]
+Parent="Rippers"
+Browser="Ad Muncher"
+
+[Artera (Version *)]
+Parent="Rippers"
+Browser="Artera"
+
+[AutoHotkey]
+Parent="Rippers"
+Browser="AutoHotkey"
+
+[b2w/*]
+Parent="Rippers"
+Browser="b2w"
+
+[BasicHTTP/*]
+Parent="Rippers"
+Browser="BasicHTTP"
+
+[BlockNote.Net]
+Parent="Rippers"
+Browser="BlockNote.Net"
+
+[CAST]
+Parent="Rippers"
+Browser="CAST"
+
+[CFNetwork/*]
+Parent="Rippers"
+Browser="CFNetwork"
+
+[CFSCHEDULE*]
+Parent="Rippers"
+Browser="ColdFusion Task Scheduler"
+
+[CobWeb/*]
+Parent="Rippers"
+Browser="CobWeb"
+
+[ColdFusion*]
+Parent="Rippers"
+Browser="ColdFusion"
+
+[Crawl_Application]
+Parent="Rippers"
+Browser="Crawl_Application"
+
+[CTerm/*]
+Parent="Rippers"
+Browser="CTerm"
+
+[Custo*]
+Parent="Rippers"
+Browser="Custo"
+
+[DataCha0s/*]
+Parent="Rippers"
+Browser="DataCha0s"
+
+[DeepIndexer*]
+Parent="Rippers"
+Browser="DeepIndexer"
+
+[DISCo Pump *]
+Parent="Rippers"
+Browser="DISCo Pump"
+
+[eStyleSearch * (compatible; MSIE 6.0; Windows NT 5.0)]
+Parent="Rippers"
+Browser="eStyleSearch"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[ezic.com http agent *]
+Parent="Rippers"
+Browser="Ezic.com"
+
+[fetch libfetch/*]
+Parent="Rippers"
+Browser="fetch libfetch"
+
+[FGet*]
+Parent="Rippers"
+Browser="FGet"
+
+[findfiles.net/* (Robot;test_robot@gmx-topmail.de)]
+Parent="Rippers"
+Browser="FindFiles"
+
+[Flaming AttackBot*]
+Parent="Rippers"
+Browser="Flaming AttackBot"
+
+[Foobot*]
+Parent="Rippers"
+Browser="Foobot"
+
+[GameSpyHTTP/*]
+Parent="Rippers"
+Browser="GameSpyHTTP"
+
+[gnome-vfs/*]
+Parent="Rippers"
+Browser="gnome-vfs"
+
+[Harvest/*]
+Parent="Rippers"
+Browser="Harvest"
+
+[hcat/*]
+Parent="Rippers"
+Browser="hcat"
+
+[HLoader]
+Parent="Rippers"
+Browser="HLoader"
+
+[Holmes/*]
+Parent="Rippers"
+Browser="Holmes"
+
+[http generic]
+Parent="Rippers"
+Browser="http generic"
+
+[http://arachnode.net*]
+Parent="Rippers"
+Browser="arachnode"
+
+[httpclient/1.0*]
+Parent="Rippers"
+Browser="httpclient"
+Version="1.0"
+MajorVer=1
+
+[httpclient*]
+Parent="Rippers"
+Browser="httpclient"
+
+[SynHttpClient*]
+Parent="Rippers"
+Browser="SynHttpClient"
+
+[httperf/*]
+Parent="Rippers"
+Browser="httperf"
+
+[HTTPFetch/*]
+Parent="Rippers"
+Browser="HTTPFetch"
+
+[HTTPGrab]
+Parent="Rippers"
+Browser="HTTPGrab"
+
+[HttpSession]
+Parent="Rippers"
+Browser="HttpSession"
+
+[httpunit/*]
+Parent="Rippers"
+Browser="HttpUnit"
+
+[ICE_GetFile]
+Parent="Rippers"
+Browser="ICE_GetFile"
+
+[iexplore.exe]
+Parent="Rippers"
+Browser="iexplore.exe"
+
+[Inet - Eureka App]
+Parent="Rippers"
+Browser="Inet - Eureka App"
+
+[INetURL/*]
+Parent="Rippers"
+Browser="INetURL"
+
+[InetURL:/*]
+Parent="Rippers"
+Browser="InetURL"
+
+[Internet Exploiter/*]
+Parent="Rippers"
+Browser="Internet Exploiter"
+
+[ZiggsBot (*compatible*;*MSIE 6.0; Windows NT 5.2*)]
+Parent="Rippers"
+Browser="ZiggsBot"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[IP*Works!*/*]
+Parent="Rippers"
+Browser="IP*Works!"
+
+[IrssiUrlLog/*]
+Parent="Rippers"
+Browser="IrssiUrlLog"
+
+[JPluck/*]
+Parent="Rippers"
+Browser="JPluck"
+
+[Kapere (http://www.kapere.com)]
+Parent="Rippers"
+Browser="Kapere"
+
+[LeechFTP]
+Parent="Rippers"
+Browser="LeechFTP"
+
+[LeechGet*]
+Parent="Rippers"
+Browser="LeechGet"
+
+[libcurl-agent/*]
+Parent="Rippers"
+Browser="libcurl"
+
+[libWeb/clsHTTP*]
+Parent="Rippers"
+Browser="libWeb/clsHTTP"
+
+[MFC_Tear_Sample]
+Parent="Rippers"
+Browser="MFC_Tear_Sample"
+
+[Moozilla]
+Parent="Rippers"
+Browser="Moozilla"
+
+[MovableType/*]
+Parent="Rippers"
+Browser="MovableType Web Log"
+
+[Mozilla/* (compatible; OffByOne; Windows*) Webster Pro V3.*]
+Parent="Rippers"
+Browser="OffByOne"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/2.0 (compatible; NEWT ActiveX; Win32)]
+Parent="Rippers"
+Browser="NEWT ActiveX"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/3.0 (compatible; Indy Library)]
+Parent="Rippers"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; BorderManager*)]
+Parent="Rippers"
+Browser="Novell BorderManager"
+
+[Mozilla/5.0 (compatible; IPCheck Server Monitor*)]
+Parent="Rippers"
+Browser="IPCheck Server Monitor"
+
+[OCN-SOC/*]
+Parent="Rippers"
+Browser="OCN-SOC"
+
+[Offline Explorer*]
+Parent="Rippers"
+Browser="Offline Explorer"
+
+[Open Web Analytics Bot*]
+Parent="Rippers"
+Browser="Open Web Analytics Bot"
+
+[Pageload*]
+Parent="Rippers"
+Browser="PageLoad"
+
+[PageNest/*]
+Parent="Rippers"
+Browser="PageNest"
+
+[pavuk/*]
+Parent="Rippers"
+Browser="Pavuk"
+
+[PEAR HTTP_Request*]
+Parent="Rippers"
+Browser="PEAR-PHP"
+
+[PigBlock (Windows NT 5.1; U)*]
+Parent="Rippers"
+Browser="PigBlock"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Pockey*]
+Parent="Rippers"
+Browser="Pockey-GetHTML"
+
+[POE-Component-Client-HTTP/*]
+Parent="Rippers"
+Browser="POE-Component-Client-HTTP"
+
+[PycURL/*]
+Parent="Rippers"
+Browser="PycURL"
+
+[RepoMonkey*]
+Parent="Rippers"
+Browser="RepoMonkey"
+
+[SBL-BOT*]
+Parent="Rippers"
+Browser="BlackWidow"
+
+[ScoutAbout*]
+Parent="Rippers"
+Browser="ScoutAbout"
+
+[sherlock/*]
+Parent="Rippers"
+Browser="Sherlock"
+
+[SiteParser/*]
+Parent="Rippers"
+Browser="SiteParser"
+
+[SiteSnagger*]
+Parent="Rippers"
+Browser="SiteSnagger"
+
+[SiteSucker/*]
+Parent="Rippers"
+Browser="SiteSucker"
+
+[SiteWinder*]
+Parent="Rippers"
+Browser="SiteWinder"
+
+[Snoopy*]
+Parent="Rippers"
+Browser="Snoopy"
+
+[SOFTWING_TEAR_AGENT*]
+Parent="Rippers"
+Browser="AspTear"
+
+[SuperHTTP/*]
+Parent="Rippers"
+Browser="SuperHTTP"
+
+[Tcl http client package*]
+Parent="Rippers"
+Browser="Tcl http client package"
+
+[Twisted PageGetter]
+Parent="Rippers"
+Browser="Twisted PageGetter"
+
+[URL2File/*]
+Parent="Rippers"
+Browser="URL2File"
+
+[UtilMind HTTPGet]
+Parent="Rippers"
+Browser="UtilMind HTTPGet"
+
+[VCI WebViewer*]
+Parent="Rippers"
+Browser="VCI WebViewer"
+
+[Web Downloader*]
+Parent="Rippers"
+Browser="Web Downloader"
+
+[Web Downloader/*]
+Parent="Rippers"
+Browser="Web Downloader"
+
+[Web Magnet*]
+Parent="Rippers"
+Browser="Web Magnet"
+
+[WebAuto/*]
+Parent="Rippers"
+Browser="WebAuto"
+
+[webbandit/*]
+Parent="Rippers"
+Browser="webbandit"
+
+[WebCopier*]
+Parent="Rippers"
+Browser="WebCopier"
+
+[WebDownloader*]
+Parent="Rippers"
+Browser="WebDownloader"
+
+[WebFetch]
+Parent="Rippers"
+Browser="WebFetch"
+
+[webfetch/*]
+Parent="Rippers"
+Browser="WebFetch"
+
+[WebGatherer*]
+Parent="Rippers"
+Browser="WebGatherer"
+
+[WebGet]
+Parent="Rippers"
+Browser="WebGet"
+
+[WebReaper*]
+Parent="Rippers"
+Browser="WebReaper"
+
+[WebRipper]
+Parent="Rippers"
+Browser="WebRipper"
+
+[WebSauger*]
+Parent="Rippers"
+Browser="WebSauger"
+
+[Website Downloader*]
+Parent="Rippers"
+Browser="Website Downloader"
+
+[Website eXtractor*]
+Parent="Rippers"
+Browser="Website eXtractor"
+
+[Website Quester]
+Parent="Rippers"
+Browser="Website Quester"
+
+[WebsiteExtractor*]
+Parent="Rippers"
+Browser="Website eXtractor"
+
+[WebSnatcher*]
+Parent="Rippers"
+Browser="WebSnatcher"
+
+[Webster Pro*]
+Parent="Rippers"
+Browser="Webster Pro"
+
+[WebStripper*]
+Parent="Rippers"
+Browser="WebStripper"
+
+[WebWhacker*]
+Parent="Rippers"
+Browser="WebWhacker"
+
+[WinScripter iNet Tools]
+Parent="Rippers"
+Browser="WinScripter iNet Tools"
+
+[WWW-Mechanize/*]
+Parent="Rippers"
+Browser="WWW-Mechanize"
+
+[Mechanize/*]
+Parent="Rippers"
+Browser="Mechanize"
+
+[A1 Keyword Research*]
+Parent="Rippers"
+Browser="A1 Keyword Research"
+
+[A1 Sitemap Generator*]
+Parent="Rippers"
+Browser="A1 Sitemap Generator"
+
+[A1 Website Analyzer*]
+Parent="Rippers"
+Browser="A1 Website Analyzer"
+
+[A1 Website Download*]
+Parent="Rippers"
+Browser="A1 Website Download"
+
+[AA bot*]
+Parent="Rippers"
+Browser="AA bot"
+
+[AACrawler*]
+Parent="Rippers"
+Browser="AACrawler"
+
+[Access Browser*]
+Parent="Rippers"
+Browser="Access Browser"
+
+[ACCESS robot*]
+Parent="Rippers"
+Browser="ACCESS robot"
+
+[accoona*]
+Parent="Rippers"
+Browser="Accoona Bot"
+
+[Acme.Spider*]
+Parent="Rippers"
+Browser="Acme.Spider"
+
+[AcroForms*]
+Parent="Rippers"
+Browser="AcroForms Bot"
+
+[ActiveWorlds Bot]
+Parent="Rippers"
+Browser="ActiveWorlds Bot"
+
+[Adaxas Spider*]
+Parent="Rippers"
+Browser="Adaxas Spider"
+
+[Advanced URL Catalog*]
+Parent="Rippers"
+Browser="Advanced URL Catalog"
+
+[Advista Crawler*]
+Parent="Rippers"
+Browser="Advista Crawler"
+
+[aipbot*]
+Parent="Rippers"
+Browser="aipbot"
+
+[AISearchBot*]
+Parent="Rippers"
+Browser="AISearchBot"
+
+[BookMacster/*]
+Parent="Rippers"
+Browser="BookMacster"
+
+[BookmarkSync/*]
+Parent="Rippers"
+Browser="BookmarkSync"
+
+[Bot.ara.com.tr/*]
+Parent="Rippers"
+Browser="Bot.ara.com.tr"
+
+[BrowserCrasherChecker *]
+Parent="Rippers"
+Browser="BrowserCrasherChecker"
+
+[Chordie.com: *]
+Parent="Rippers"
+Browser="Chordie.com"
+
+[CKHttpGenerator]
+Parent="Rippers"
+Browser="CKHttpGenerator"
+
+[crawler4j*]
+Parent="Rippers"
+Browser="crawler4j"
+
+[Crawl*]
+Parent="Rippers"
+Browser="Crawlboy"
+
+[Dropcatcher.de Domain Bot +http://www.dropcatcher.de/bot.html]
+Parent="Rippers"
+Browser="Dropcatcher.de Domain Bot"
+
+[ESigil Request *]
+Parent="Rippers"
+Browser="ESigil Request"
+
+[eStyleSearch *]
+Parent="Rippers"
+Browser="eStyleSearch"
+
+[HTTP Fetcher/*]
+Parent="Rippers"
+Browser="HTTP Fetcher"
+
+[http_get]
+Parent="Rippers"
+Browser="http_get"
+
+[HTTPing *]
+Parent="Rippers"
+Browser="HTTPing"
+
+[Mozilla/2.0 (compatible; NEWT ActiveX; *)]
+Parent="Rippers"
+Browser="NEWT ActiveX"
+
+[Mozilla/* (compatible; OffByOne; *]
+Parent="Rippers"
+Browser="OffByOne"
+
+[PigBlock*]
+Parent="Rippers"
+Browser="PigBlock"
+
+[Internet (*)]
+Parent="Rippers"
+
+[Mozilla/3.0 (compatible)]
+Parent="Rippers"
+
+[Mozilla/3.01 (compatible;)]
+Parent="Rippers"
+
+[Mozilla/4.0 (compatible)]
+Parent="Rippers"
+
+[Mozilla/4.0 (compatible;)]
+Parent="Rippers"
+
+[Mozilla/5.0 (compatible)]
+Parent="Rippers"
+
+[Mozilla/5.0 (compatible;)]
+Parent="Rippers"
+
+[Mozilla/6.0 (compatible)]
+Parent="Rippers"
+
+[Mozilla/6.0 (compatible;)]
+Parent="Rippers"
+
+[Mozilla/?.0 (compatible;*User-agent*)]
+Parent="Rippers"
+
+[Shockwave Flash]
+Parent="Rippers"
+Browser="Shockwave Flash"
+
+[SiteTruth.com*]
+Parent="Rippers"
+Browser="SiteTruth"
+
+[SVN/*]
+Parent="Rippers"
+Browser="SVN"
+
+[TLSProber/*]
+Parent="Rippers"
+Browser="TLSProber"
+
+[Windows-Live-Social-Object-Extractor-Engine*]
+Parent="Rippers"
+Browser="Windows-Live-Social-Object-Extractor-Engine"
+
+[Windows-Update-Agent*]
+Parent="Rippers"
+Browser="Windows-Update-Agent"
+
+[WinSysClean*]
+Parent="Rippers"
+Browser="WinSysClean"
+
+[Dolphin http client/10.*]
+Parent="Rippers"
+Browser="Dolphin smalltalk http client"
+Version="10.0"
+MajorVer=10
+
+[Dolphin http client/*]
+Parent="Rippers"
+Browser="Dolphin smalltalk http client"
+
+[Python-urllib/2.7*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.7"
+MajorVer=2
+MinorVer=7
+
+[Python-urllib/1.17*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="1.17"
+MajorVer=1
+MinorVer=17
+
+[Python-urllib/*]
+Parent="Rippers"
+Browser="Python-urllib"
+
+[python-requests/2.3* CPython/*Linux*x86_64*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[python-requests/2.3* CPython/*Linux i686*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[python-requests/2.3* CPython/*Linux*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Linux"
+
+[python-requests/2.3*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+
+[python-requests/2.2* CPython/*Linux*x86_64*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Linux"
+
+[python-requests/2.2* CPython/*Linux i686*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Linux"
+
+[python-requests/2.2* CPython/*Linux*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Linux"
+
+[python-requests/2.2*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+
+[python-requests/2.1* CPython/*Linux*x86_64*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Linux"
+
+[python-requests/2.1* CPython/*Linux i686*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Linux"
+
+[python-requests/2.1* CPython/*Linux*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Linux"
+
+[python-requests/2.1*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[python-requests/2.0* CPython/*Linux*x86_64*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[python-requests/2.0* CPython/*Linux i686*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[python-requests/2.0* CPython/*Linux*]
+Parent="Rippers"
+Browser="Python-urllib"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[python-requests/2.0*]
+Parent="Rippers"
+Browser="Python"
+Version="2.0"
+MajorVer=2
+
+[python-requests/*]
+Parent="Rippers"
+Browser="Python"
+
+[Python*]
+Parent="Rippers"
+Browser="Python"
+
+[Smartsite HTTPClient*]
+Parent="Rippers"
+Browser="Smartsite HTTPClient"
+
+[RPT-HTTPClient/*]
+Parent="Rippers"
+Browser="RPT-HTTPClient"
+
+[EventMachine HttpClient*]
+Parent="Rippers"
+Browser="EventMachine HttpClient"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/1.0*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) RMSnapKit/*]
+Parent="Rippers"
+Browser="RMSnapKit"
+Platform="MacOSX"
+Platform_Version=10
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows-RSS-Platform 1.0
+
+[Windows-RSS-Platform 1.0]
+Parent="DefaultProperties"
+Comment="Windows-RSS-Platform"
+Browser="Windows-RSS-Platform"
+Version="1.0"
+MajorVer=1
+Platform="Win32"
+Win32="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[Windows-RSS-Platform/1.0*]
+Parent="Windows-RSS-Platform 1.0"
+
+[Windows-RSS-Platform/1.0 (MSIE *; *Windows NT 5.1*)]
+Parent="Windows-RSS-Platform 1.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Windows-RSS-Platform/1.0 (MSIE *; *Windows NT 6.0*)]
+Parent="Windows-RSS-Platform 1.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Site Monitors
+
+[Site Monitors]
+Parent="DefaultProperties"
+Comment="Site Monitors"
+Browser="Site Monitors"
+Crawler="true"
+
+[*EasyRider*]
+Parent="Site Monitors"
+Browser="EasyRider"
+
+[*maxamine.com--robot*]
+Parent="Site Monitors"
+Browser="maxamine.com--robot"
+
+[*WebMon ?.*]
+Parent="Site Monitors"
+Browser="WebMon"
+
+[Kenjin Spider*]
+Parent="Site Monitors"
+Browser="Kenjin Spider"
+
+[Kevin http://*]
+Parent="Site Monitors"
+Browser="Kevin"
+
+[Mozilla/4.0 (compatible; ChangeDetection/*]
+Parent="Site Monitors"
+Browser="ChangeDetection"
+
+[Mozilla/5.0 (compatible; Chirp/1.0; +http://www.binarycanary.com/chirp.cfm)]
+Parent="Site Monitors"
+Browser="BinaryCanary"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; UptimeRobot/1.0; http://www.uptimerobot.com/)]
+Parent="Site Monitors"
+Browser="UptimeRobot"
+Version="1.0"
+MajorVer=1
+
+[Myst Monitor Service v*]
+Parent="Site Monitors"
+Browser="Myst Monitor Service"
+
+[Net Probe]
+Parent="Site Monitors"
+Browser="Net Probe"
+
+[NetMechanic*]
+Parent="Site Monitors"
+Browser="NetMechanic"
+
+[NetReality*]
+Parent="Site Monitors"
+Browser="NetReality"
+
+[Pingdom.com_bot_version_1.4*]
+Parent="Site Monitors"
+Browser="Pingdom"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[Pingdom.com_bot_version_*]
+Parent="Site Monitors"
+Browser="Pingdom"
+
+[*Pingdom*]
+Parent="Site Monitors"
+Browser="Pingdom"
+
+[Site Valet Online*]
+Parent="Site Monitors"
+Browser="Site Valet"
+
+[SITECHECKER]
+Parent="Site Monitors"
+Browser="SITECHECKER"
+
+[sitemonitor@dnsvr.com/*]
+Parent="Site Monitors"
+Browser="ZoneEdit Failover Monitor"
+
+[UpTime Checker*]
+Parent="Site Monitors"
+Browser="UpTime Checker"
+
+[URL Control*]
+Parent="Site Monitors"
+Browser="URL Control"
+
+[URL_Access/*]
+Parent="Site Monitors"
+Browser="URL_Access"
+
+[URLCHECK]
+Parent="Site Monitors"
+Browser="URLCHECK"
+
+[URLy Warning*]
+Parent="Site Monitors"
+Browser="URLy Warning"
+
+[Webcheck *]
+Parent="Site Monitors"
+Browser="Webcheck"
+Version="1.0"
+MajorVer=1
+
+[WebPatrol/*]
+Parent="Site Monitors"
+Browser="WebPatrol"
+
+[websitepulse checker/*]
+Parent="Site Monitors"
+Browser="websitepulse checker"
+
+[Mozilla/5.0 (compatible; Chirp/*; +http://www.binarycanary.com/chirp.cfm)]
+Parent="Site Monitors"
+Browser="BinaryCanary"
+
+[BMC Link Validator (http://www.briansmodelcars.com/links/)]
+Parent="Site Monitors"
+Browser="BMC Link Validator"
+
+[Pingdom GIGRIB*]
+Parent="Site Monitors"
+Browser="Pingdom"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows-RSS-Platform 2.0
+
+[Windows-RSS-Platform 2.0]
+Parent="DefaultProperties"
+Comment="Windows-RSS-Platform"
+Browser="Windows-RSS-Platform"
+Version="2.0"
+MajorVer=2
+Platform="Win32"
+Win32="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[Windows-RSS-Platform/2.0 (MSIE ?.0; Windows NT *.*)]
+Parent="Windows-RSS-Platform 2.0"
+
+[Windows-RSS-Platform/2.0 (MSIE *; *Windows NT 5.1*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Windows-RSS-Platform/2.0 (MSIE *; *Windows NT 6.0*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Windows-RSS-Platform/2.0 (MSIE *; *Windows NT 6.1*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Windows-RSS-Platform/2.0 (MSIE *; *Windows NT 6.2*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Windows-RSS-Platform/2.0 (MSIE *; *Windows NT 6.3*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Windows-RSS-Platform/2.0 (IE *; *Windows NT 6.1*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Windows-RSS-Platform/2.0 (IE *; *Windows NT 6.2*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Windows-RSS-Platform/2.0 (IE *; *Windows NT 6.3*)]
+Parent="Windows-RSS-Platform 2.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SiteCon
+
+[SiteCon]
+Parent="DefaultProperties"
+Comment="SiteCon"
+Browser="SiteCon"
+Platform="Linux"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) SiteCon/8.10*]
+Parent="SiteCon"
+Version="8.10"
+MajorVer=8
+MinorVer=10
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) SiteCon/8.8*]
+Parent="SiteCon"
+Version="8.8"
+MajorVer=8
+MinorVer=8
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) SiteCon/*]
+Parent="SiteCon"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Social Networking
+
+[Social Networking]
+Parent="DefaultProperties"
+Comment="Social Bookmarkers"
+Browser="Social Bookmarkers"
+Crawler="true"
+
+[BookmarkBase(2/;http://bookmarkbase.com)]
+Parent="Social Networking"
+Browser="BookmarkBase"
+
+[Cocoal.icio.us/1.0 (v43) (Mac OS X; http://www.scifihifi.com/cocoalicious)]
+Parent="Social Networking"
+Browser="Cocoalicious"
+
+[Mozilla/5.0 (*) Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ]
+Parent="Social Networking"
+Browser="OneRiot"
+
+[Mozilla/5.0 (compatible; FriendFeedBot/0.*; +Http://friendfeed.com/about/bot)]
+Parent="Social Networking"
+Browser="FriendFeedBot"
+
+[Mozilla/5.0 (compatible; Twitturls; +http://twitturls.com)]
+Parent="Social Networking"
+Browser="Twitturls"
+
+[SocialSpider-Finder/0.*]
+Parent="Social Networking"
+Browser="SocialSpider-Finder"
+
+[Twitturly*]
+Parent="Social Networking"
+Browser="Twitturly"
+
+[WinkBot/*]
+Parent="Social Networking"
+Browser="WinkBot"
+
+[Mozilla/5.0 (compatible; FriendFeedBot/*; +Http://friendfeed.com/about/bot)]
+Parent="Social Networking"
+Browser="FriendFeedBot"
+
+[Mozilla/5.0 (*Gecko/* Firefox/2.0 OneRiot/1.0 (http://www.oneriot.com) ]
+Parent="Social Networking"
+Browser="OneRiot"
+
+[Slackbot-LinkExpanding*]
+Parent="Social Networking"
+Browser="Slackbot-Link-Expanding"
+
+[Slackbot*]
+Parent="Social Networking"
+Browser="Slackbot"
+
+[Mozilla/5.0 (compatible; Embedly/0.2*]
+Parent="Social Networking"
+Browser="Embedly"
+Version="0.2"
+MinorVer=2
+
+[Mozilla/5.0 (compatible; Embedly/*]
+Parent="Social Networking"
+Browser="Embedly"
+
+[Mozilla/5.0 (compatible; Linux; Socialradarbot/2.0*]
+Parent="Social Networking"
+Browser="Socialradarbot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; Linux; Socialradarbot/*]
+Parent="Social Networking"
+Browser="Socialradarbot"
+
+[Mozilla/5.0 (compatible; EveryoneSocialBot/1.0*]
+Parent="Social Networking"
+Browser="EveryoneSocialBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; EveryoneSocialBot/*]
+Parent="Social Networking"
+Browser="EveryoneSocialBot"
+
+[R6_CommentReader*]
+Parent="Social Networking"
+Browser="R6 CommentReader"
+
+[viralvideochart.unrulymedia.com*]
+Parent="Social Networking"
+Browser="viralvideochart Bot"
+
+[Mozilla/5.0 (compatible; Linux; InfegyAtlas/1.0*]
+Parent="Social Networking"
+Browser="InfegyAtlas"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Linux; InfegyAtlas/*]
+Parent="Social Networking"
+Browser="InfegyAtlas"
+
+[QuickiWiki/1.0*]
+Parent="Social Networking"
+Browser="QuickiWiki Bot"
+Version="1.0"
+MajorVer=1
+
+[QuickiWiki/*]
+Parent="Social Networking"
+Browser="QuickiWiki Bot"
+
+[Mozilla/5.0 (compatible; vkShare*]
+Parent="Social Networking"
+Browser="vkShare"
+
+[seebot/2.0*]
+Parent="Social Networking"
+Browser="SeeBot"
+Version="2.0"
+MajorVer=2
+
+[seebot/*]
+Parent="Social Networking"
+Browser="SeeBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Translators
+
+[Translators]
+Parent="DefaultProperties"
+Comment="Translators"
+Browser="Translators"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[Seram Server]
+Parent="Translators"
+Browser="Seram Server"
+
+[TeragramWebcrawler/*]
+Parent="Translators"
+Browser="TeragramWebcrawler"
+Version="1.0"
+MajorVer=1
+
+[WebIndexer/* (Web Indexer*)]
+Parent="Translators"
+Browser="WorldLingo"
+
+[WebIndexer/* (Web Indexer; *)]
+Parent="Translators"
+Browser="WorldLingo"
+
+[WebTrans]
+Parent="Translators"
+Browser="WebTrans"
+
+[ATA-Translation-Service]
+Parent="Translators"
+Browser="ATA-Translation-Service"
+
+[Gnomit]
+Parent="General Crawlers"
+Comment="Gnomit"
+Browser="Gnomit"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/1.0*]
+Parent="Gnomit"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (*http://gnomit.com/) Gecko/* Gnomit/*]
+Parent="Gnomit"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Version Checkers
+
+[Version Checkers]
+Parent="DefaultProperties"
+Comment="Version Checkers"
+Browser="Version Checkers"
+Crawler="true"
+
+[Automated Browscap.ini Updater. Gary contact me at serge@skycomp.ca with problems.]
+Parent="Version Checkers"
+Browser="Automated Browscap Updater"
+
+[Automated Browscap.ini Updater. To report issues contact us at+http://www.skycomp.ca]
+Parent="Version Checkers"
+Browser="Automated Browscap.ini Updater"
+
+[Browscap Mirror System/1.* (browscap.giantrealm.com)]
+Parent="Version Checkers"
+Browser="Browscap Mirror System"
+
+[Browscap Mirror v1.30]
+Parent="Version Checkers"
+Browser="Browscap Mirror"
+
+[Browscap updater]
+Parent="Version Checkers"
+Browser="Browscap updater"
+
+[browscap updater; interval:weekly; server:rohan.doppy.nl; questions:support@doppy.nl;]
+Parent="Version Checkers"
+Browser="browscap updater"
+
+[BrowscapUpdater1.0]
+Parent="Version Checkers"
+Browser="BrowscapUpdater"
+
+[Browser Capabilities Project - PHP Browscap*]
+Parent="Version Checkers"
+Browser="BCP - PHP Browscap"
+Version="1.0"
+MajorVer=1
+
+[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]
+Parent="Version Checkers"
+Browser="TKC AutoDownloader"
+
+[Decode Framework 0.* browscap library]
+Parent="Version Checkers"
+Browser="Decode Framework browscap library"
+
+[Desktop Sidebar*]
+Parent="Version Checkers"
+Browser="Desktop Sidebar"
+
+[Mono Browser Capabilities Updater*]
+Parent="Version Checkers"
+Browser="Mono Browser Capabilities Updater"
+
+[PHP Browser Capabilities Project/*]
+Parent="Version Checkers"
+Browser="PHP Browser Capabilities Project"
+
+[UpdateBrowscap*]
+Parent="Version Checkers"
+Browser="UpdateBrowscap"
+
+[WCC Browscap Updater/0.* (PHP: file_get_contents)]
+Parent="Version Checkers"
+Browser="WCC Browscap Updater"
+
+[Automated Browscap.ini Updater. To report issues contact us at*http://www.skycomp.ca]
+Parent="Version Checkers"
+Browser="Automated Browscap.ini Updater"
+
+[Browser Capabilities Project - PHP Browscap/*]
+Parent="Version Checkers"
+Browser="BCP - PHP Browscap"
+
+[Browscap Mirror System/* (browscap.giantrealm.com)]
+Parent="Version Checkers"
+Browser="Browscap Mirror System"
+
+[BrowscapUpdater*]
+Parent="Version Checkers"
+Browser="BrowscapUpdater"
+
+[Code Sample Web Client]
+Parent="Version Checkers"
+Browser="Code Sample Web Client"
+
+[Subtext Version 1.9* - http://subtextproject.com/ (Microsoft Windows NT 5.2.*)]
+Parent="Version Checkers"
+Browser="Subtext"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[TherapeuticResearch]
+Parent="Version Checkers"
+Browser="TherapeuticResearch"
+
+[Rewmi/*]
+Parent="Version Checkers"
+
+[browsers.garykeith.com browscap.ini bot BETA]
+Parent="Version Checkers"
+
+[www.substancia.com AutoHTTPAgent (ver *)]
+Parent="Version Checkers"
+Browser="www.substancia.com"
+
+[WebRingChecker/1.71*]
+Parent="Version Checkers"
+Browser="WebRingChecker"
+Version="1.71"
+MajorVer=1
+MinorVer=71
+
+[WebRingChecker/*]
+Parent="Version Checkers"
+Browser="WebRingChecker"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GomezAgent
+
+[GomezAgent]
+Parent="DefaultProperties"
+Comment="Site Monitors"
+Browser="Gomez Site Monitor"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; GomezAgent ?.0; Windows NT)]
+Parent="GomezAgent"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; GomezAgent ?.0; Windows NT)]
+Parent="GomezAgent"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; W3C
+
+[W3C]
+Parent="DefaultProperties"
+Comment="W3C"
+Browser="W3C"
+Crawler="true"
+
+[*W3C-checklink/*]
+Parent="W3C"
+Browser="W3C-checklink"
+
+[Jigsaw/*]
+Parent="W3C"
+Browser="Jigsaw CSS Validator"
+
+[Jigsaw/* W3C_CSS_Validator*/*]
+Parent="W3C"
+Browser="Jigsaw_W3C_CSS_Validator"
+
+[P3P Validator]
+Parent="W3C"
+Browser="P3P Validator"
+
+[Unicorn/1.*]
+Parent="W3C"
+Browser="W3C Unicorn"
+
+[W3C-mobileOK/*]
+Parent="W3C"
+Browser="W3C-mobileOK"
+
+[W3C-mobileOK/DDC-*]
+Parent="W3C"
+Browser="W3C-mobileOK/DDC"
+isMobileDevice="true"
+
+[W3C-WebCon/*]
+Parent="W3C"
+Browser="W3C-WebCon"
+
+[W3C_Validator/*]
+Parent="W3C"
+Browser="W3C_Validator"
+
+[W3CLineMode/*]
+Parent="W3C"
+Browser="W3CLineMode"
+
+[W3CRobot/*]
+Parent="W3C"
+Browser="W3CRobot"
+
+[Validator.nu/LV*]
+Parent="W3C"
+Browser="Validator.nu/LV"
+
+[W3C_I18n-Checker/*]
+Parent="W3C"
+Browser="W3C I18n Checker"
+
+[W3C_Unicorn/*]
+Parent="W3C"
+Browser="W3C Unicorn"
+
+[Mozilla/4.0 (jig browser web; 1.0*]
+Parent="W3C"
+Browser="jig browser web"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/4.0 (jig browser web*]
+Parent="W3C"
+Browser="jig browser web"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GomezAgent 3.0
+
+[GomezAgent 3.0]
+Parent="DefaultProperties"
+Comment="Site Monitors"
+Browser="Gomez Site Monitor"
+Version="3.0"
+MajorVer=3
+Crawler="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 6.0*; *GomezAgent 3.0)*]
+Parent="GomezAgent 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 5.1*WOW64*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 5.1*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 5.2*WOW64*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 5.2*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 6.1*WOW64*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 6.1*; Trident/4.0; *GomezAgent 3.0)]
+Parent="GomezAgent 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; GomezAgent 3.0) Gecko/* Firefox/*]
+Parent="GomezAgent 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; GomezAgent 3.1
+
+[GomezAgent 3.1]
+Parent="DefaultProperties"
+Comment="Site Monitors"
+Browser="Gomez Site Monitor"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Crawler="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 6.0*; GomezAgent 3.1)*]
+Parent="GomezAgent 3.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE ?.0; *Windows NT 5.2*WOW64*; Trident/4.0; * GomezAgent 3.1)]
+Parent="GomezAgent 3.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; GomezAgent 3.1) Gecko/* Firefox/*]
+Parent="GomezAgent 3.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Heritrix
+
+[Heritrix]
+Parent="DefaultProperties"
+Comment="Heritrix"
+Browser="Heritrix"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[*heritrix*]
+Parent="Heritrix"
+
+[*Mozilla/5.0 compatible; heritrix/*]
+Parent="Heritrix"
+
+[Mozilla/5.0 (compatible; *; heritrix/*]
+Parent="Heritrix"
+
+[Mozilla/5.0 (bl.uk_lddc_bot; *Linux*x86_64*)*]
+Parent="Heritrix"
+Browser="bl.uk_lddc_bot"
+Platform="Linux"
+
+[Mozilla/5.0 (bl.uk_lddc_bot; *Linux i686*)*]
+Parent="Heritrix"
+Browser="bl.uk_lddc_bot"
+Platform="Linux"
+
+[Mozilla/5.0 (bl.uk_lddc_bot; *Linux*)*]
+Parent="Heritrix"
+Browser="bl.uk_lddc_bot"
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; bnf.fr_bot;*]
+Parent="Heritrix"
+Browser="bnf.fr_bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FeedHub
+
+[FeedHub]
+Parent="DefaultProperties"
+Comment="FeedHub"
+Browser="FeedHub"
+isSyndicationReader="true"
+Crawler="true"
+
+[FeedHub FeedDiscovery/1.0 (http://www.feedhub.com)]
+Parent="FeedHub"
+Browser="FeedHub FeedDiscovery"
+Version="1.0"
+MajorVer=1
+
+[FeedHub FeedFetcher/1.0 (http://www.feedhub.com)]
+Parent="FeedHub"
+Browser="FeedHub FeedFetcher"
+Version="1.0"
+MajorVer=1
+
+[FeedHub MetaDataFetcher/1.0 (http://www.feedhub.com)]
+Parent="FeedHub"
+Browser="FeedHub MetaDataFetcher"
+Version="1.0"
+MajorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BoardReader
+
+[BoardReader]
+Parent="DefaultProperties"
+Comment="BoardReader"
+Browser="BoardReader"
+isSyndicationReader="true"
+Crawler="true"
+
+[BoardReader Favicon Fetcher /1.0*]
+Parent="BoardReader"
+Browser="BoardReader Favicon Fetcher"
+Version="1.0"
+MajorVer=1
+isSyndicationReader="false"
+
+[BoardReader Favicon Fetcher /*]
+Parent="BoardReader"
+Browser="BoardReader Favicon Fetcher"
+isSyndicationReader="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.7
+
+[Tiny Tiny RSS 1.7]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.7"
+Browser="Tiny Tiny RSS"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.7*]
+Parent="Tiny Tiny RSS 1.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.8
+
+[Tiny Tiny RSS 1.8]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.8"
+Browser="Tiny Tiny RSS"
+Version="1.8"
+MajorVer=1
+MinorVer=8
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.8*]
+Parent="Tiny Tiny RSS 1.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.9
+
+[Tiny Tiny RSS 1.9]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.9"
+Browser="Tiny Tiny RSS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.9*]
+Parent="Tiny Tiny RSS 1.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.10
+
+[Tiny Tiny RSS 1.10]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.10"
+Browser="Tiny Tiny RSS"
+Version="1.10"
+MajorVer=1
+MinorVer=10
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.10*]
+Parent="Tiny Tiny RSS 1.10"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.11
+
+[Tiny Tiny RSS 1.11]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.11"
+Browser="Tiny Tiny RSS"
+Version="1.11"
+MajorVer=1
+MinorVer=11
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.11*]
+Parent="Tiny Tiny RSS 1.11"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.12
+
+[Tiny Tiny RSS 1.12]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.12"
+Browser="Tiny Tiny RSS"
+Version="1.12"
+MajorVer=1
+MinorVer=12
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.12*]
+Parent="Tiny Tiny RSS 1.12"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Tiny Tiny RSS 1.13
+
+[Tiny Tiny RSS 1.13]
+Parent="DefaultProperties"
+Comment="Tiny Tiny RSS 1.13"
+Browser="Tiny Tiny RSS"
+Version="1.13"
+MajorVer=1
+MinorVer=13
+isSyndicationReader="true"
+Crawler="true"
+
+[Tiny Tiny RSS/1.13*]
+Parent="Tiny Tiny RSS 1.13"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hot HD Wallpapers
+
+[Hot HD Wallpapers]
+Parent="DefaultProperties"
+Comment="Hot HD Wallpapers"
+Browser="Hot HD Wallpapers"
+Platform="Darwin"
+
+[HOT%20HD%20WPs/* CFNetwork/* *Darwin*]
+Parent="Hot HD Wallpapers"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Internet Content Rating Association
+
+[Internet Content Rating Association]
+Parent="DefaultProperties"
+Comment="Internet Content Rating Association"
+Browser="Internet Content Rating Association"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[ICRA_label_generator/1.?]
+Parent="Internet Content Rating Association"
+Browser="ICRA_label_generator"
+
+[ICRA_Semantic_spider/0.?]
+Parent="Internet Content Rating Association"
+Browser="ICRA_Semantic_spider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nagios
+
+[Nagios]
+Parent="DefaultProperties"
+Comment="Nagios"
+Browser="Nagios"
+Crawler="true"
+
+[check_http/* (nagios-plugins 1.1.*)]
+Parent="Nagios"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[check_http/* (nagios-plugins 1.2.*)]
+Parent="Nagios"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[check_http/* (nagios-plugins 1.3.*)]
+Parent="Nagios"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+
+[check_http/* (nagios-plugins 1.4.*)]
+Parent="Nagios"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[check_http/* (nagios-plugins 1.*)]
+Parent="Nagios"
+Version="1.0"
+MajorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ichiro Mobile Bot
+
+[Ichiro Mobile Bot]
+Parent="DefaultProperties"
+Comment="Ichiro Mobile Bot"
+Browser="Ichiro Mobile Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+Crawler="true"
+
+[DoCoMo/2.0 P900i(c100;TB;W24H11) (compatible; ichiro/mobile goo*]
+Parent="Ichiro Mobile Bot"
+
+[DoCoMo/2.0 P901i(c100;TB;W24H11) (compatible; ichiro/mobile goo*]
+Parent="Ichiro Mobile Bot"
+
+[KDDI-CA31 UP.Browser/6.2* (compatible; ichiro/mobile goo*]
+Parent="Ichiro Mobile Bot"
+
+[KDDI-CA32 UP.Browser/6.2* (compatible; ichiro/mobile goo*]
+Parent="Ichiro Mobile Bot"
+
+[Vodafone/1.0/V802SH/SHJ002 Browser/UP.Browser/7.0* (compatible; ichiro/mobile goo*]
+Parent="Ichiro Mobile Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ichiro Bot
+
+[Ichiro Bot]
+Parent="DefaultProperties"
+Comment="Ichiro Bot"
+Browser="Ichiro Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[ichiro/3.0*]
+Parent="Ichiro Bot"
+Version="3.0"
+MajorVer=3
+
+[ichiro/*]
+Parent="Ichiro Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NameProtect
+
+[NameProtect]
+Parent="DefaultProperties"
+Comment="NameProtect"
+Browser="NameProtect"
+Crawler="true"
+
+[abot/*]
+Parent="NameProtect"
+
+[NP/*]
+Parent="NameProtect"
+
+[NPBot*]
+Parent="NameProtect"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Jobs
+
+[Jobs]
+Parent="DefaultProperties"
+Comment="Jobs"
+Browser="Jobs"
+Crawler="true"
+
+[JobRoboter/1.1*]
+Parent="Jobs"
+Browser="JobRoboter"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[JobRoboter/*]
+Parent="Jobs"
+Browser="JobRoboter"
+
+[Mozilla/5.0 (compatible; MetaJobBot*]
+Parent="Jobs"
+Browser="MetaJobBot"
+
+[Mozilla/5.0 (compatible; JobdiggerSpider*]
+Parent="Jobs"
+Browser="JobdiggerSpider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Netcraft
+
+[Netcraft]
+Parent="DefaultProperties"
+Comment="Netcraft"
+Browser="Netcraft"
+Crawler="true"
+
+[*Netcraft Web Server Survey*]
+Parent="Netcraft"
+Browser="Netcraft Webserver Survey"
+
+[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; *info@netcraft.com)]
+Parent="Netcraft"
+Browser="NetcraftSurveyAgent"
+
+[Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0*info@netcraft.com)]
+Parent="Netcraft"
+Browser="NetcraftSurveyAgent"
+
+[*Netcraft Webserver Survey*]
+Parent="Netcraft"
+Browser="Netcraft Webserver Survey"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iCjobs Crawler
+
+[iCjobs Crawler]
+Parent="DefaultProperties"
+Comment="iCjobs Crawler"
+Browser="iCjobs Crawler"
+Crawler="true"
+
+[Mozilla/5.0 (*iCjobs Stellenangebote Jobs*)*iCjobs/3.2*]
+Parent="iCjobs Crawler"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[Mozilla/5.0 (*iCjobs Stellenangebote Jobs*)*iCjobs/*]
+Parent="iCjobs Crawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; CareerBot
+
+[CareerBot]
+Parent="DefaultProperties"
+Comment="CareerBot"
+Browser="CareerBot"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; CareerBot/1.1*]
+Parent="CareerBot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; CareerBot/*]
+Parent="CareerBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; NewsGator
+
+[NewsGator]
+Parent="DefaultProperties"
+Comment="NewsGator"
+Browser="NewsGator"
+isSyndicationReader="true"
+Crawler="true"
+
+[MarsEdit*]
+Parent="NewsGator"
+Browser="MarsEdit"
+
+[NewsFire/*]
+Parent="NewsGator"
+Browser="NewsFire"
+
+[NewsGator FetchLinks extension/*]
+Parent="NewsGator"
+Browser="NewsGator FetchLinks"
+
+[NewsGator/*]
+Parent="NewsGator"
+
+[NewsGatorOnline/*]
+Parent="NewsGator"
+Browser="NewsGatorOnline"
+
+[LetsCrawl.com]
+Parent="General Crawlers"
+Comment="LetsCrawl.com"
+Browser="LetsCrawl.com"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[LetsCrawl.com/1.0*]
+Parent="LetsCrawl.com"
+Version="1.0"
+MajorVer=1
+
+[LetsCrawl.com/*]
+Parent="LetsCrawl.com"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WooRank
+
+[WooRank]
+Parent="DefaultProperties"
+Comment="SEO & Analytics"
+Browser="WooRank"
+Crawler="true"
+
+[woobot/1.1*]
+Parent="WooRank"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[woobot/2.0*]
+Parent="WooRank"
+Version="2.0"
+MajorVer=2
+
+[uMBot]
+Parent="General Crawlers"
+Comment="uMBot"
+Browser="uMBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; uMBot-LN/1.0*]
+Parent="uMBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; uMBot-LN/*]
+Parent="uMBot"
+
+[Mozilla/5.0 (compatible; uMBot-FC/1.0*]
+Parent="uMBot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; uMBot-FC/*]
+Parent="uMBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; LinkChecker
+
+[LinkChecker]
+Parent="DefaultProperties"
+Comment="Link Checkers"
+Browser="LinkChecker"
+Crawler="true"
+
+[LinkChecker/7.*]
+Parent="LinkChecker"
+Version="7.0"
+MajorVer=7
+
+[LinkChecker/*]
+Parent="LinkChecker"
+
+[LinkedInBot]
+Parent="General Crawlers"
+Comment="LinkedInBot"
+Browser="LinkedInBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[LinkedInBot/1.*]
+Parent="LinkedInBot"
+Version="1.0"
+MajorVer=1
+
+[LinkedInBot/*]
+Parent="LinkedInBot"
+
+[LIAuthLibrary:0.0.2 com.linkedin.android:3.4.2 TCL_ALCATEL ONE TOUCH 4037T:android_4.4.2*]
+Parent="LinkedInBot"
+Platform="Android"
+Platform_Version="4.4"
+isMobileDevice="true"
+
+[LucidMedia ClickSense]
+Parent="General Crawlers"
+Comment="LucidMedia-ClickSense"
+Browser="LucidMedia-ClickSense"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[LucidMedia ClickSense/4.*]
+Parent="LucidMedia ClickSense"
+Version="4.0"
+MajorVer=4
+
+[LucidMedia ClickSense/*]
+Parent="LucidMedia ClickSense"
+
+[m65bot]
+Parent="General Crawlers"
+Comment="m65bot"
+Browser="m65bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[DoCoMo/2.0 P904i( m65bot/0.1; c; http://m65.jp/bot.html )]
+Parent="m65bot"
+
+[magpie-crawler]
+Parent="General Crawlers"
+Comment="magpie-crawler"
+Browser="magpie-crawler"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[magpie-crawler/1.*]
+Parent="magpie-crawler"
+Version="1.0"
+MajorVer=1
+
+[magpie-crawler/*]
+Parent="magpie-crawler"
+
+[Mahalobot]
+Parent="General Crawlers"
+Comment="Mahalobot"
+Browser="Mahalobot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mahalobot/1.0 (?http://www.mahalo.com/)]
+Parent="Mahalobot"
+Version="1.0"
+MajorVer=1
+
+[Mahalobot/* (?http://www.mahalo.com/)]
+Parent="Mahalobot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iOS dataaccessd 1.0
+
+[iOS dataaccessd 1.0]
+Parent="DefaultProperties"
+Comment="iOS dataaccessd"
+Browser="iOS dataaccessd"
+Version="1.0"
+MajorVer=1
+Platform="iOS"
+isMobileDevice="true"
+
+[iOS/5.1* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="5.1"
+
+[iOS/6.0* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="6.0"
+
+[iOS/6.1* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="6.1"
+
+[iOS/7.0* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="7.0"
+
+[iOS/7.1* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="7.1"
+
+[iOS/8.0* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+Platform_Version="8.0"
+
+[iOS/* (*) dataaccessd/1.0*]
+Parent="iOS dataaccessd 1.0"
+
+[Marvin]
+Parent="General Crawlers"
+Comment="MedHunt"
+Browser="MedHunt"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Marvin v0.3]
+Parent="Marvin"
+Version="0.3"
+MinorVer=3
+
+[Marvin v*]
+Parent="Marvin"
+
+[masidani_bot]
+Parent="General Crawlers"
+Comment="masidani_bot"
+Browser="masidani_bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[masidani_bot_v0.6*]
+Parent="masidani_bot"
+Version="0.6"
+MinorVer=6
+
+[masidani_bot_v*]
+Parent="masidani_bot"
+
+[MJ12bot]
+Parent="General Crawlers"
+Comment="MJ12bot"
+Browser="MJ12bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[MJ12bot/v0.5*]
+Parent="MJ12bot"
+Version="0.5"
+MinorVer=5
+
+[Mozilla/5.0 (compatible; MJ12bot/v0.5*)]
+Parent="MJ12bot"
+Version="0.5"
+MinorVer=5
+
+[MJ12bot/v0.6*]
+Parent="MJ12bot"
+Version="0.6"
+MinorVer=6
+
+[Mozilla/5.0 (compatible; MJ12bot/v0.6*)]
+Parent="MJ12bot"
+Version="0.6"
+MinorVer=6
+
+[MJ12bot/v0.7*]
+Parent="MJ12bot"
+Version="0.7"
+MinorVer=7
+
+[Mozilla/5.0 (compatible; MJ12bot/v0.7*)]
+Parent="MJ12bot"
+Version="0.7"
+MinorVer=7
+
+[MJ12bot/v0.8*]
+Parent="MJ12bot"
+Version="0.8"
+MinorVer=8
+
+[Mozilla/5.0 (compatible; MJ12bot/v0.8*)]
+Parent="MJ12bot"
+Version="0.8"
+MinorVer=8
+
+[MJ12bot/v0.9*]
+Parent="MJ12bot"
+Version="0.9"
+MinorVer=9
+
+[Mozilla/5.0 (compatible; MJ12bot/v0.9*)]
+Parent="MJ12bot"
+Version="0.9"
+MinorVer=9
+
+[MJ12bot/v1.1*]
+Parent="MJ12bot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.1*)]
+Parent="MJ12bot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[MJ12bot/v1.2*]
+Parent="MJ12bot"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.2*)]
+Parent="MJ12bot"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[MJ12bot/v1.3*]
+Parent="MJ12bot"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.3*)]
+Parent="MJ12bot"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+
+[MJ12bot/v1.4*]
+Parent="MJ12bot"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.4*)]
+Parent="MJ12bot"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[MJ12bot/v1.*]
+Parent="MJ12bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; MJ12bot/v1.*)]
+Parent="MJ12bot"
+Version="1.0"
+MajorVer=1
+
+[MJ12bot/v*]
+Parent="MJ12bot"
+
+[Mozilla/5.0 (compatible; MJ12bot/v*)]
+Parent="MJ12bot"
+
+[Mozdex]
+Parent="General Crawlers"
+Comment="Mozdex"
+Browser="Mozdex"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozdex/0.7*]
+Parent="Mozdex"
+Version="0.7"
+MinorVer=7
+
+[Mozdex/*]
+Parent="Mozdex"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Naver
+
+[Naver]
+Parent="DefaultProperties"
+Comment="NaverBot"
+Browser="NaverBot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[*naver*]
+Parent="Naver"
+
+[Cowbot-* (NHN Corp*naver.com)]
+Parent="Naver"
+
+[Mozilla/4.0 (compatible; NaverBot/*)]
+Parent="Naver"
+
+[Mozilla/4.0 (compatible; NaverBot/*; nhnbot@naver.com)]
+Parent="Naver"
+
+[NaverBot-* (NHN Corp*naver.com)]
+Parent="Naver"
+
+[Yeti/*]
+Parent="Naver"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yeti-Mobile
+
+[Yeti-Mobile]
+Parent="DefaultProperties"
+Comment="NaverBot"
+Browser="NaverBot Mobile"
+Frames="true"
+Tables="true"
+isMobileDevice="true"
+Crawler="true"
+
+[DoCoMo/2.0?P-04A *(compatible; Yeti-Mobile/0.1; ?http://help.naver.com/robots/)*]
+Parent="Yeti-Mobile"
+
+[Offline Pages]
+Parent="General Crawlers"
+Comment="Offline Pages"
+Browser="Offline Pages"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[OfflinePages/* CFNetwork/* *Darwin*]
+Parent="Offline Pages"
+Platform="Darwin"
+
+[PagePeeker]
+Parent="General Crawlers"
+Comment="PagePeeker"
+Browser="PagePeeker"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/* Safari/* PagePeeker/2.1*]
+Parent="PagePeeker"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/* Safari/* PagePeeker/*]
+Parent="PagePeeker"
+Platform="Linux"
+
+[Pete-Spider]
+Parent="General Crawlers"
+Comment="Pete-Spider"
+Browser="Pete-Spider"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Pete-Spider/1.*]
+Parent="Pete-Spider"
+Version="1.0"
+MajorVer=1
+
+[Pete-Spider/*]
+Parent="Pete-Spider"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 5.0
+
+[Chromium 5.0]
+Parent="DefaultProperties"
+Comment="Chromium 5.0"
+Browser="Chromium"
+Version="5.0"
+MajorVer=5
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/5.*Chrome/*Safari/*]
+Parent="Chromium 5.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 6.0
+
+[Chromium 6.0]
+Parent="DefaultProperties"
+Comment="Chromium 6.0"
+Browser="Chromium"
+Version="6.0"
+MajorVer=6
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/6.*Chrome/*Safari/*]
+Parent="Chromium 6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 7.0
+
+[Chromium 7.0]
+Parent="DefaultProperties"
+Comment="Chromium 7.0"
+Browser="Chromium"
+Version="7.0"
+MajorVer=7
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/7.*Chrome/*Safari/*]
+Parent="Chromium 7.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 8.0
+
+[Chromium 8.0]
+Parent="DefaultProperties"
+Comment="Chromium 8.0"
+Browser="Chromium"
+Version="8.0"
+MajorVer=8
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/8.*Chrome/*Safari/*]
+Parent="Chromium 8.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 9.0
+
+[Chromium 9.0]
+Parent="DefaultProperties"
+Comment="Chromium 9.0"
+Browser="Chromium"
+Version="9.0"
+MajorVer=9
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/9.*Chrome/*Safari/*]
+Parent="Chromium 9.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 10.0
+
+[Chromium 10.0]
+Parent="DefaultProperties"
+Comment="Chromium 10.0"
+Browser="Chromium"
+Version="10.0"
+MajorVer=10
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/10.*Chrome/*Safari/*]
+Parent="Chromium 10.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 11.0
+
+[Chromium 11.0]
+Parent="DefaultProperties"
+Comment="Chromium 11.0"
+Browser="Chromium"
+Version="11.0"
+MajorVer=11
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/11.*Chrome/*Safari/*]
+Parent="Chromium 11.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 12.0
+
+[Chromium 12.0]
+Parent="DefaultProperties"
+Comment="Chromium 12.0"
+Browser="Chromium"
+Version="12.0"
+MajorVer=12
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/12.*Chrome/*Safari/*]
+Parent="Chromium 12.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 13.0
+
+[Chromium 13.0]
+Parent="DefaultProperties"
+Comment="Chromium 13.0"
+Browser="Chromium"
+Version="13.0"
+MajorVer=13
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/13.*Chrome/*Safari/*]
+Parent="Chromium 13.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 14.0
+
+[Chromium 14.0]
+Parent="DefaultProperties"
+Comment="Chromium 14.0"
+Browser="Chromium"
+Version="14.0"
+MajorVer=14
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/14.*Chrome/*Safari/*]
+Parent="Chromium 14.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 15.0
+
+[Chromium 15.0]
+Parent="DefaultProperties"
+Comment="Chromium 15.0"
+Browser="Chromium"
+Version="15.0"
+MajorVer=15
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/15.*Chrome/*Safari/*]
+Parent="Chromium 15.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 16.0
+
+[Chromium 16.0]
+Parent="DefaultProperties"
+Comment="Chromium 16.0"
+Browser="Chromium"
+Version="16.0"
+MajorVer=16
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/16.*Chrome/*Safari/*]
+Parent="Chromium 16.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 17.0
+
+[Chromium 17.0]
+Parent="DefaultProperties"
+Comment="Chromium 17.0"
+Browser="Chromium"
+Version="17.0"
+MajorVer=17
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/17.*Chrome/*Safari/*]
+Parent="Chromium 17.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 18.0
+
+[Chromium 18.0]
+Parent="DefaultProperties"
+Comment="Chromium 18.0"
+Browser="Chromium"
+Version="18.0"
+MajorVer=18
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/18.*Chrome/*Safari/*]
+Parent="Chromium 18.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 19.0
+
+[Chromium 19.0]
+Parent="DefaultProperties"
+Comment="Chromium 19.0"
+Browser="Chromium"
+Version="19.0"
+MajorVer=19
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/19.*Chrome/*Safari/*]
+Parent="Chromium 19.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 20.0
+
+[Chromium 20.0]
+Parent="DefaultProperties"
+Comment="Chromium 20.0"
+Browser="Chromium"
+Version="20.0"
+MajorVer=20
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/20.*Chrome/*Safari/*]
+Parent="Chromium 20.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 21.0
+
+[Chromium 21.0]
+Parent="DefaultProperties"
+Comment="Chromium 21.0"
+Browser="Chromium"
+Version="21.0"
+MajorVer=21
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/21.*Chrome/*Safari/*]
+Parent="Chromium 21.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 22.0
+
+[Chromium 22.0]
+Parent="DefaultProperties"
+Comment="Chromium 22.0"
+Browser="Chromium"
+Version="22.0"
+MajorVer=22
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/22.*Chrome/*Safari/*]
+Parent="Chromium 22.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 23.0
+
+[Chromium 23.0]
+Parent="DefaultProperties"
+Comment="Chromium 23.0"
+Browser="Chromium"
+Version="23.0"
+MajorVer=23
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/23.*Chrome/*Safari/*]
+Parent="Chromium 23.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 24.0
+
+[Chromium 24.0]
+Parent="DefaultProperties"
+Comment="Chromium 24.0"
+Browser="Chromium"
+Version="24.0"
+MajorVer=24
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/24.*Chrome/*Safari/*]
+Parent="Chromium 24.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 25.0
+
+[Chromium 25.0]
+Parent="DefaultProperties"
+Comment="Chromium 25.0"
+Browser="Chromium"
+Version="25.0"
+MajorVer=25
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/25.*Chrome/*Safari/*]
+Parent="Chromium 25.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 26.0
+
+[Chromium 26.0]
+Parent="DefaultProperties"
+Comment="Chromium 26.0"
+Browser="Chromium"
+Version="26.0"
+MajorVer=26
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/26.*Chrome/*Safari/*]
+Parent="Chromium 26.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 27.0
+
+[Chromium 27.0]
+Parent="DefaultProperties"
+Comment="Chromium 27.0"
+Browser="Chromium"
+Version="27.0"
+MajorVer=27
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/27.*Chrome/*Safari/*]
+Parent="Chromium 27.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 28.0
+
+[Chromium 28.0]
+Parent="DefaultProperties"
+Comment="Chromium 28.0"
+Browser="Chromium"
+Version="28.0"
+MajorVer=28
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/28.*Chrome/*Safari/*]
+Parent="Chromium 28.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 29.0
+
+[Chromium 29.0]
+Parent="DefaultProperties"
+Comment="Chromium 29.0"
+Browser="Chromium"
+Version="29.0"
+MajorVer=29
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/29.*Chrome/*Safari/*]
+Parent="Chromium 29.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 30.0
+
+[Chromium 30.0]
+Parent="DefaultProperties"
+Comment="Chromium 30.0"
+Browser="Chromium"
+Version="30.0"
+MajorVer=30
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/30.*Chrome/*Safari/*]
+Parent="Chromium 30.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 31.0
+
+[Chromium 31.0]
+Parent="DefaultProperties"
+Comment="Chromium 31.0"
+Browser="Chromium"
+Version="31.0"
+MajorVer=31
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/31.*Chrome/*Safari/*]
+Parent="Chromium 31.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 32.0
+
+[Chromium 32.0]
+Parent="DefaultProperties"
+Comment="Chromium 32.0"
+Browser="Chromium"
+Version="32.0"
+MajorVer=32
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/32.*Chrome/*Safari/*]
+Parent="Chromium 32.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 33.0
+
+[Chromium 33.0]
+Parent="DefaultProperties"
+Comment="Chromium 33.0"
+Browser="Chromium"
+Version="33.0"
+MajorVer=33
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/33.*Chrome/*Safari/*]
+Parent="Chromium 33.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 34.0
+
+[Chromium 34.0]
+Parent="DefaultProperties"
+Comment="Chromium 34.0"
+Browser="Chromium"
+Version="34.0"
+MajorVer=34
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/34.*Chrome/*Safari/*]
+Parent="Chromium 34.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 35.0
+
+[Chromium 35.0]
+Parent="DefaultProperties"
+Comment="Chromium 35.0"
+Browser="Chromium"
+Version="35.0"
+MajorVer=35
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/35.*Chrome/*Safari/*]
+Parent="Chromium 35.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 36.0
+
+[Chromium 36.0]
+Parent="DefaultProperties"
+Comment="Chromium 36.0"
+Browser="Chromium"
+Version="36.0"
+MajorVer=36
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/36.*Chrome/*Safari/*]
+Parent="Chromium 36.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 37.0
+
+[Chromium 37.0]
+Parent="DefaultProperties"
+Comment="Chromium 37.0"
+Browser="Chromium"
+Version="37.0"
+MajorVer=37
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/37.*Chrome/*Safari/*]
+Parent="Chromium 37.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 38.0
+
+[Chromium 38.0]
+Parent="DefaultProperties"
+Comment="Chromium 38.0"
+Browser="Chromium"
+Version="38.0"
+MajorVer=38
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/38.*Chrome/*Safari/*]
+Parent="Chromium 38.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium 39.0
+
+[Chromium 39.0]
+Parent="DefaultProperties"
+Comment="Chromium 39.0"
+Browser="Chromium"
+Version="39.0"
+MajorVer=39
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (SMART-TV; X11; Linux armv7l) AppleWebkit/* (KHTML, like Gecko) Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu/12.04*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+Platform_Version="12.04"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Ubuntu*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu; Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Ubuntu*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+Platform="Ubuntu"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/39.*Chrome/*Safari/*]
+Parent="Chromium 39.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chromium Generic
+
+[Chromium Generic]
+Parent="DefaultProperties"
+Comment="Chromium Generic"
+Browser="Chromium"
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*]
+Parent="Chromium Generic"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*]
+Parent="Chromium Generic"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chromium/*Chrome/*Safari/*]
+Parent="Chromium Generic"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kinza 1.2
+
+[Kinza 1.2]
+Parent="DefaultProperties"
+Comment="Kinza 1.2"
+Browser="Kinza"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Kinza/1.2*]
+Parent="Kinza 1.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SuperBird 24.0
+
+[SuperBird 24.0]
+Parent="DefaultProperties"
+Comment="SuperBird 24.0"
+Browser="SuperBird"
+Version="24.0"
+MajorVer=24
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) SuperBird/24.*]
+Parent="SuperBird 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WhiteHat Aviator 33.0
+
+[WhiteHat Aviator 33.0]
+Parent="DefaultProperties"
+Comment="WhiteHat Aviator 33.0"
+Browser="WhiteHat Aviator"
+Version="33.0"
+MajorVer=33
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/33.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WhiteHat Aviator 34.0
+
+[WhiteHat Aviator 34.0]
+Parent="DefaultProperties"
+Comment="WhiteHat Aviator 34.0"
+Browser="WhiteHat Aviator"
+Version="34.0"
+MajorVer=34
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/34.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WhiteHat Aviator 35.0
+
+[WhiteHat Aviator 35.0]
+Parent="DefaultProperties"
+Comment="WhiteHat Aviator 35.0"
+Browser="WhiteHat Aviator"
+Version="35.0"
+MajorVer=35
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/35.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; WhiteHat Aviator 36.0
+
+[WhiteHat Aviator 36.0]
+Parent="DefaultProperties"
+Comment="WhiteHat Aviator 36.0"
+Browser="WhiteHat Aviator"
+Version="36.0"
+MajorVer=36
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) WhiteHat Aviator/36.* Chrome/* Safari/*]
+Parent="WhiteHat Aviator 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Element Browser 5.0
+
+[Element Browser 5.0]
+Parent="DefaultProperties"
+Comment="Element Browser 5.0"
+Browser="Element Browser"
+Version="5.0"
+MajorVer=5
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Element Browser 5.*]
+Parent="Element Browser 5.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Element Browser 6.0
+
+[Element Browser 6.0]
+Parent="DefaultProperties"
+Comment="Element Browser 6.0"
+Browser="Element Browser"
+Version="6.0"
+MajorVer=6
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Element Browser 6.*]
+Parent="Element Browser 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Element Browser 7.0
+
+[Element Browser 7.0]
+Parent="DefaultProperties"
+Comment="Element Browser 7.0"
+Browser="Element Browser"
+Version="7.0"
+MajorVer=7
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Element Browser 7.*]
+Parent="Element Browser 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PHP
+
+[PHP]
+Parent="DefaultProperties"
+Comment="PHP"
+Browser="PHP"
+Crawler="true"
+
+[httpclient (http://www.phpclasses.org/httpclient $Revision:*]
+Parent="PHP"
+Browser="httpclient"
+
+[PECL::HTTP/1.6*]
+Parent="PHP"
+Browser="PECL HTTP"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[PECL::HTTP/1.7*]
+Parent="PHP"
+Browser="PECL HTTP"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[PECL::HTTP/*]
+Parent="PHP"
+Browser="PECL HTTP"
+
+[?Ogg.class.php*]
+Parent="PHP"
+
+[Ogg.class.php*]
+Parent="PHP"
+
+[xmlrpc-epi-php/* (PHP)]
+Parent="PHP"
+
+[PHP-SOAP/5.2*]
+Parent="PHP"
+Version="5.2"
+MajorVer=5
+MinorVer=2
+
+[PHP-SOAP/5.3*]
+Parent="PHP"
+Version="5.3"
+MajorVer=5
+MinorVer=3
+
+[PHP-SOAP/5.4*]
+Parent="PHP"
+Version="5.4"
+MajorVer=5
+MinorVer=4
+
+[PHP-SOAP/5.5*]
+Parent="PHP"
+Version="5.5"
+MajorVer=5
+MinorVer=5
+
+[PHP-SOAP/5.6*]
+Parent="PHP"
+Version="5.6"
+MajorVer=5
+MinorVer=6
+
+[XML-RPC for PHP *]
+Parent="PHP"
+Browser="XML-RPC for PHP"
+
+[Zend_XmlRpc_Client]
+Parent="PHP"
+Browser="Zend_XmlRpc_Client"
+
+[Zend_Http_Client]
+Parent="PHP"
+Browser="Zend_Http_Client"
+
+[PHP/5.2*]
+Parent="PHP"
+Version="5.2"
+MajorVer=5
+MinorVer=2
+
+[PHP/5.3*]
+Parent="PHP"
+Version="5.3"
+MajorVer=5
+MinorVer=3
+
+[PHP/5.4*]
+Parent="PHP"
+Version="5.4"
+MajorVer=5
+MinorVer=4
+
+[PHP/5.5*]
+Parent="PHP"
+Version="5.5"
+MajorVer=5
+MinorVer=5
+
+[PHP/5.6*]
+Parent="PHP"
+Version="5.6"
+MajorVer=5
+MinorVer=6
+
+[PHP*]
+Parent="PHP"
+
+[Pixray-Seeker]
+Parent="General Crawlers"
+Comment="Pixray-Seeker"
+Browser="Pixray-Seeker"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Pixray-Seeker/1.1*]
+Parent="Pixray-Seeker"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[Pixray-Seeker/1.*]
+Parent="Pixray-Seeker"
+Version="1.0"
+MajorVer=1
+
+[Pixray-Seeker/2.0*]
+Parent="Pixray-Seeker"
+Version="2.0"
+MajorVer=2
+
+[Pixray-Seeker/*]
+Parent="Pixray-Seeker"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.0
+
+[Maxthon 3.0]
+Parent="DefaultProperties"
+Comment="Maxthon 3.0"
+Browser="Maxthon"
+Version="3.0"
+MajorVer=3
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.0*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.0* Chrome/*Safari/*]
+Parent="Maxthon 3.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.1
+
+[Maxthon 3.1]
+Parent="DefaultProperties"
+Comment="Maxthon 3.1"
+Browser="Maxthon"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.1*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.1* Chrome/*Safari/*]
+Parent="Maxthon 3.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.2
+
+[Maxthon 3.2]
+Parent="DefaultProperties"
+Comment="Maxthon 3.2"
+Browser="Maxthon"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.2*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.2* Chrome/*Safari/*]
+Parent="Maxthon 3.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.3
+
+[Maxthon 3.3]
+Parent="DefaultProperties"
+Comment="Maxthon 3.3"
+Browser="Maxthon"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.3*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.3* Chrome/*Safari/*]
+Parent="Maxthon 3.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 3.4
+
+[Maxthon 3.4]
+Parent="DefaultProperties"
+Comment="Maxthon 3.4"
+Browser="Maxthon"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Maxthon/3.4*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Maxthon/3.4* Chrome/*Safari/*]
+Parent="Maxthon 3.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant 2015
+
+[Avant 2015]
+Parent="DefaultProperties"
+Comment="Avant 2015"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/38.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/37.* Safari/*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:32.0; Avant TriCore) Gecko/* Firefox/32.*]
+Parent="Avant 2015"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant 2014
+
+[Avant 2014]
+Parent="DefaultProperties"
+Comment="Avant 2014"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/35.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/34.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:27.0; Avant TriCore) Gecko/* Firefox/30.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:27.0; Avant TriCore) Gecko/* Firefox/27.*]
+Parent="Avant 2014"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 10.0
+
+[Avant/IE 10.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 10.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.0;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.0*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.2;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.1;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 5.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*MSIE 10.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*MSIE 10.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1;*Win64? x64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*WOW64*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.0*Trident/6.0*Avant Browser*]
+Parent="Avant/IE 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant 2013
+
+[Avant 2013]
+Parent="DefaultProperties"
+Comment="Avant 2013"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/31.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/30.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/29.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/28.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/27.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/26.* Safari/*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:26.0; Avant TriCore) Gecko/* Firefox/26.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:25.0; Avant TriCore) Gecko/* Firefox/25.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:23.0; Avant TriCore) Gecko/* Firefox/23.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:22.0; Avant TriCore) Gecko/* Firefox/22.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:20.0; Avant TriCore) Gecko/* Firefox/20.*]
+Parent="Avant 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant Generic Tricore
+
+[Avant Generic Tricore]
+Parent="DefaultProperties"
+Comment="Avant Generic Tricore"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Avant TriCore) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*rv:*; Avant TriCore) Gecko/* Firefox/*]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 5.1;*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2;*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0;*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0; Avant Browser; rv:11.0) like Gecko]
+Parent="Avant Generic Tricore"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 9.0
+
+[Avant/IE 9.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 9.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*MSIE 9.0; *Windows NT 6.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*MSIE 9.0; *Windows NT 5.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1;*Win64? x64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*WOW64*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.0*Trident/5.0*Avant Browser*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.0; *WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.01*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 5.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT*Avant Browser; Maxthon*]
+Parent="Avant/IE 9.0"
+Platform="WinNT"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 8.0
+
+[Avant/IE 8.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 8.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+[Mozilla/4.0 (*MSIE 8.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (*MSIE 8.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*MSIE 8.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*MSIE 8.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.01*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT*Trident/4.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 6.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.2*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1;*Win64? x64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*WOW64*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.1*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.0; *Windows NT 5.0*Trident/4.0*Avant Browser*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 6.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.01*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT 5.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; *Windows NT*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 6.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0; *WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.01*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT 5.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 8.0; *Windows NT*Avant Browser; Maxthon*]
+Parent="Avant/IE 8.0"
+Platform="WinNT"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 7.0
+
+[Avant/IE 7.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 7.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+[Mozilla/4.0 (*MSIE 7.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (*MSIE 7.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*MSIE 7.0; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*MSIE 7.0; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.01*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT*Mozilla/4.0 (compatible; MSIE 6.0*Avant Browser*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 6.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.01*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT 5.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; *Windows NT*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 6.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.2*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1;*Win64? x64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.1*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0; *WOW64*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.01*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT 5.0*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 7.0; *Windows NT*Avant Browser; Maxthon*]
+Parent="Avant/IE 7.0"
+Platform="WinNT"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 6.0
+
+[Avant/IE 6.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 6.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=1
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE 6.*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.2*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.2*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.2*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.1*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.1*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.1*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.0;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.0*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 6.0*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE 6.*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 6.0"
+Platform="WinNT"
+
+[Mozilla/4.0 (*MSIE 6*Avant Browser*)*]
+Parent="Avant/IE 6.0"
+
+[Mozilla/5.0 (*MSIE 6*Avant Browser*)*]
+Parent="Avant/IE 6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 5.5
+
+[Avant/IE 5.5]
+Parent="DefaultProperties"
+Comment="Avant/IE 5.5"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT 5.2;*Win64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.5*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT 5.2;*Win64*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.5*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 5.5"
+Platform="WinNT"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Avant/IE 5.0
+
+[Avant/IE 5.0]
+Parent="DefaultProperties"
+Comment="Avant/IE 5.0"
+Browser="Avant"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT 5.2;*Win64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 5.*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinNT"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows 95*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows 98*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Win 9x 4.90*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.0; *WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.01*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.01"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.0*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.1;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.1*WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.1*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.2;*Win64? x64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.2*WOW64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.2*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT 5.2;*Win64*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 5.*; *Windows NT*Avant Browser*]
+Parent="Avant/IE 5.0"
+Platform="WinNT"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; cURL
+
+[cURL]
+Parent="DefaultProperties"
+Comment="CURL"
+Browser="cURL"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[curl/7.35*]
+Parent="cURL"
+Version="7.35"
+MajorVer=7
+MinorVer=35
+
+[curl/7.19*Linux*]
+Parent="cURL"
+Version="7.19"
+MajorVer=7
+MinorVer=19
+Platform="Linux"
+
+[curl/7.19*x86_64*linux*]
+Parent="cURL"
+Version="7.19"
+MajorVer=7
+MinorVer=19
+Platform="Linux"
+
+[curl/7.19]
+Parent="cURL"
+Version="7.19"
+MajorVer=7
+MinorVer=19
+
+[curl*]
+Parent="cURL"
+
+[*WinHttpRequest*]
+Parent="cURL"
+Browser="WinHttp"
+
+[WinHTTP*]
+Parent="cURL"
+Browser="WinHttp"
+
+[WinHttp*]
+Parent="cURL"
+Browser="WinHttp"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 2.0
+
+[Maxthon 2.0]
+Parent="DefaultProperties"
+Comment="Maxthon 2.0"
+Browser="Maxthon"
+Version="2.0"
+MajorVer=2
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.0*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.0*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.1*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.2*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.0*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.1*WOW64*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.1*; *Maxthon*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows 98*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.0*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows 98*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.0*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.1*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 5.2*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.0*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.1*WOW64*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE 10.0; *Windows NT 6.1*; *MyIE2*]
+Parent="Maxthon 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 4.0
+
+[Maxthon 4.0 for Android]
+Parent="DefaultProperties"
+Comment="Maxthon 4.0"
+Browser="Maxthon"
+Version="4.0"
+MajorVer=4
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.0*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.0*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.0*]
+Parent="Maxthon 4.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.0*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.0*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon]
+Parent="Maxthon 4.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)Maxthon AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)Maxthon AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="Maxthon 4.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*)Maxthon AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="Maxthon 4.0 for Android"
+Win32="false"
+
+[Maxthon 4.0]
+Parent="DefaultProperties"
+Comment="Maxthon 4.0"
+Browser="Maxthon"
+Version="4.0"
+MajorVer=4
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0* Chrome/* Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.0*Safari/*]
+Parent="Maxthon 4.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 4.1
+
+[Maxthon 4.1 for Android]
+Parent="DefaultProperties"
+Comment="Maxthon 4.1"
+Browser="Maxthon"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.1*]
+Parent="Maxthon 4.1 for Android"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.1*]
+Parent="Maxthon 4.1 for Android"
+Platform_Version="4.4"
+
+[Maxthon 4.1]
+Parent="DefaultProperties"
+Comment="Maxthon 4.1"
+Browser="Maxthon"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1* Chrome/* Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.1*Safari/*]
+Parent="Maxthon 4.1"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 4.2
+
+[Maxthon 4.2 for Android]
+Parent="DefaultProperties"
+Comment="Maxthon 4.2"
+Browser="Maxthon"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.2*]
+Parent="Maxthon 4.2 for Android"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.2*]
+Parent="Maxthon 4.2 for Android"
+Platform_Version="4.4"
+
+[Maxthon 4.2]
+Parent="DefaultProperties"
+Comment="Maxthon 4.2"
+Browser="Maxthon"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2* Chrome/* Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.2*Safari/*]
+Parent="Maxthon 4.2"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 4.3
+
+[Maxthon 4.3 for Android]
+Parent="DefaultProperties"
+Comment="Maxthon 4.3"
+Browser="Maxthon"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.3*]
+Parent="Maxthon 4.3 for Android"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.3*]
+Parent="Maxthon 4.3 for Android"
+Platform_Version="4.4"
+
+[Maxthon 4.3]
+Parent="DefaultProperties"
+Comment="Maxthon 4.3"
+Browser="Maxthon"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3* Chrome/* Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.3*Safari/*]
+Parent="Maxthon 4.3"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maxthon 4.4
+
+[Maxthon 4.4 for Android]
+Parent="DefaultProperties"
+Comment="Maxthon 4.4"
+Browser="Maxthon"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i *) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* Maxthon/4.4*]
+Parent="Maxthon 4.4 for Android"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/* MxBrowser/4.4*]
+Parent="Maxthon 4.4 for Android"
+Platform_Version="4.4"
+
+[Maxthon 4.4]
+Parent="DefaultProperties"
+Comment="Maxthon 4.4"
+Browser="Maxthon"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4* Chrome/* Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko)*Maxthon/4.4*Safari/*]
+Parent="Maxthon 4.4"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fake Chrome
+
+[Fake Chrome]
+Parent="DefaultProperties"
+Comment="Fake Chrome"
+Browser="Fake Chrome"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (X11; Windows x86_64) AppleWebKit/* (KHTML, like Gecko) chrome/* Safari/*]
+Parent="Fake Chrome"
+
+[Mozilla/* (Windows NT 7.1) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Fake Chrome"
+
+[Mozilla/5.0 (Windows*) AppleWebKit/* (KHTML like Gecko) Chrome/* Safari/*]
+Parent="Fake Chrome"
+
+[=Mozilla/5.0 (Windows*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Fake Chrome"
+
+[Mozilla/4.0 (Windows*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/*]
+Parent="Fake Chrome"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 1.0
+
+[Android WebView 1.0]
+Parent="DefaultProperties"
+Comment="Android WebView 1.0"
+Browser="Android WebView"
+Version="1.0"
+MajorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GS1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*generic_vortex Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*LG-V900* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Dell Streak 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*G100W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 992D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 97 CARBON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROID X2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*EVO3D_X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SGH-T989 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus F4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*pcdadr6350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/EVO_3D* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_C* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID BIONIC 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_XL* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXE_Beats Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXL_Beats* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U9508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTab A2107A-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-LS860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Lenovo A660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4012 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 7 Lite Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-Q Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5080CPRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5580C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SHW-M380W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710BST Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXE_Beats_Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXL_Beats_X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sprint APX515CKT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*UNO_X10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 7 pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TechniPad_10-3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Tablet-PC-4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Tablet-PC-4.1-Mozilla/5.0 (*Linux*Android?4.1*ADM8000KP_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-T889 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-R720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G700-U10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9988_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Browser="YouWave Android on PC"
+Version=Basic
+MajorVer=Basic
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9999_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Browser="YouWave Android on PC"
+Version=Home
+MajorVer=Home
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK BNRV200*)*Apple*WebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SurfTab_7.0 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus T2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7312 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TP10.1-1500DC* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7316 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300SE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6310N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus F3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus T5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-1 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NEXT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP7100D3G Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Sprint APA9292KT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G525-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI Y530-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_500 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AN9G2I Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARNOVA 101 G4 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6810P Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 785*) AppleWebKit*(KTHML,like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 1010*) AppleWebKit*(KTHML,like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHMTL,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TAB10-400*Build/*) AppleWebKit* (KHTML,*like*Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A328 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.0*NEC-0912 Build/*)AppleWebKit/*(KHTML, Like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0(*Linux*Android?4.2*BLU Studio 5.0 S II Build/*)AppleWebKit/*(KHTML,like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S785X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7275R Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G901F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G850F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Lenovo A390*Mozilla/5.0 (*Linux*Android?4.0*Lenovo A390*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[HTC_ChaCha_A810e/Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?1.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.0*Chrome*Safari*]
+Parent="Android WebView 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 1.5
+
+[Android WebView 1.5]
+Parent="DefaultProperties"
+Comment="Android WebView 1.5"
+Browser="Android WebView"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GS1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*generic_vortex Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*LG-V900* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Dell Streak 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*G100W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 992D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 97 CARBON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROID X2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*EVO3D_X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SGH-T989 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus F4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*pcdadr6350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/EVO_3D* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_C* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID BIONIC 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_XL* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXE_Beats Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXL_Beats* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U9508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTab A2107A-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-LS860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Lenovo A660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4012 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 7 Lite Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-Q Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5080CPRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5580C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SHW-M380W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710BST Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXE_Beats_Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXL_Beats_X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sprint APX515CKT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*UNO_X10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 7 pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TechniPad_10-3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Tablet-PC-4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Tablet-PC-4.1-Mozilla/5.0 (*Linux*Android?4.1*ADM8000KP_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-T889 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-R720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G700-U10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9988_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Browser="YouWave Android on PC"
+Version=Basic
+MajorVer=Basic
+MinorVer=0
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9999_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Browser="YouWave Android on PC"
+Version=Home
+MajorVer=Home
+MinorVer=0
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK BNRV200*)*Apple*WebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SurfTab_7.0 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus T2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7312 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TP10.1-1500DC* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7316 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300SE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6310N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus F3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus T5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-1 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NEXT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP7100D3G Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Sprint APA9292KT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G525-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI Y530-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_500 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AN9G2I Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARNOVA 101 G4 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6810P Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 785*) AppleWebKit*(KTHML,like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 1010*) AppleWebKit*(KTHML,like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHMTL,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TAB10-400*Build/*) AppleWebKit* (KHTML,*like*Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A328 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.0*NEC-0912 Build/*)AppleWebKit/*(KHTML, Like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0(*Linux*Android?4.2*BLU Studio 5.0 S II Build/*)AppleWebKit/*(KHTML,like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S785X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7275R Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G901F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G850F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Lenovo A390*Mozilla/5.0 (*Linux*Android?4.0*Lenovo A390*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[HTC_ChaCha_A810e/Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?1.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.5*Chrome*Safari*]
+Parent="Android WebView 1.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 1.6
+
+[Android WebView 1.6]
+Parent="DefaultProperties"
+Comment="Android WebView 1.6"
+Browser="Android WebView"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GS1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*generic_vortex Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*LG-V900* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Dell Streak 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*G100W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 992D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 97 CARBON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROID X2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*EVO3D_X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SGH-T989 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus F4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*pcdadr6350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/EVO_3D* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_C* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID BIONIC 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_XL* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXE_Beats Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXL_Beats* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U9508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTab A2107A-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-LS860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Lenovo A660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4012 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 7 Lite Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-Q Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5080CPRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5580C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SHW-M380W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710BST Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXE_Beats_Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXL_Beats_X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sprint APX515CKT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*UNO_X10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 7 pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TechniPad_10-3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Tablet-PC-4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Tablet-PC-4.1-Mozilla/5.0 (*Linux*Android?4.1*ADM8000KP_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-T889 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-R720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G700-U10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9988_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Browser="YouWave Android on PC"
+Version=Basic
+MajorVer=Basic
+MinorVer=0
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9999_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Browser="YouWave Android on PC"
+Version=Home
+MajorVer=Home
+MinorVer=0
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK BNRV200*)*Apple*WebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SurfTab_7.0 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus T2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7312 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TP10.1-1500DC* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7316 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300SE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6310N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus F3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus T5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-1 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NEXT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP7100D3G Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Sprint APA9292KT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G525-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI Y530-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_500 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AN9G2I Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARNOVA 101 G4 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6810P Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 785*) AppleWebKit*(KTHML,like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 1010*) AppleWebKit*(KTHML,like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHMTL,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TAB10-400*Build/*) AppleWebKit* (KHTML,*like*Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A328 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.0*NEC-0912 Build/*)AppleWebKit/*(KHTML, Like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0(*Linux*Android?4.2*BLU Studio 5.0 S II Build/*)AppleWebKit/*(KHTML,like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S785X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7275R Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G901F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G850F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Lenovo A390*Mozilla/5.0 (*Linux*Android?4.0*Lenovo A390*) AppleWebKit* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[HTC_ChaCha_A810e/Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?1.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/1.6*Chrome*Safari*]
+Parent="Android WebView 1.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 2.0
+
+[Android WebView 2.0]
+Parent="DefaultProperties"
+Comment="Android WebView 2.0"
+Browser="Android WebView"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GS1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*generic_vortex Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*LG-V900* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Dell Streak 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*G100W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 992D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 97 CARBON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROID X2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*EVO3D_X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SGH-T989 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus F4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*pcdadr6350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/EVO_3D* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_C* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID BIONIC 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_XL* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXE_Beats Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXL_Beats* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U9508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTab A2107A-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-LS860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Lenovo A660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4012 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 7 Lite Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-Q Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5080CPRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5580C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SHW-M380W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710BST Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXE_Beats_Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXL_Beats_X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sprint APX515CKT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*UNO_X10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 7 pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TechniPad_10-3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Tablet-PC-4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Tablet-PC-4.1-Mozilla/5.0 (*Linux*Android?4.1*ADM8000KP_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-T889 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-R720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G700-U10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9988_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Browser="YouWave Android on PC"
+Version=Basic
+MajorVer=Basic
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9999_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Browser="YouWave Android on PC"
+Version=Home
+MajorVer=Home
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK BNRV200*)*Apple*WebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SurfTab_7.0 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus T2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7312 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TP10.1-1500DC* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7316 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300SE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6310N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus F3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus T5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-1 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NEXT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP7100D3G Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Sprint APA9292KT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G525-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI Y530-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_500 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AN9G2I Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARNOVA 101 G4 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6810P Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 785*) AppleWebKit*(KTHML,like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 1010*) AppleWebKit*(KTHML,like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHMTL,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TAB10-400*Build/*) AppleWebKit* (KHTML,*like*Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A328 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.0*NEC-0912 Build/*)AppleWebKit/*(KHTML, Like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0(*Linux*Android?4.2*BLU Studio 5.0 S II Build/*)AppleWebKit/*(KHTML,like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S785X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7275R Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G901F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G850F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Lenovo A390*Mozilla/5.0 (*Linux*Android?4.0*Lenovo A390*) AppleWebKit* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[HTC_ChaCha_A810e/Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?1.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/2.0*Chrome*Safari*]
+Parent="Android WebView 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android WebView 4.0
+
+[Android WebView 4.0]
+Parent="DefaultProperties"
+Comment="Android WebView 4.0"
+Browser="Android WebView"
+Version="4.0"
+MajorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GS1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*generic_vortex Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A501 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SAMSUNG-GT-P7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*LG-V900* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xoom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Xoom MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ604 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*MZ616*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ThinkPad Tablet Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 80G9 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Dell Streak 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*G100W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P6211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7300B Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7501* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI MediaPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Sony Tablet S Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*Sony Tablet P Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A211 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A701 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 992D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 97 CARBON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS FAMILYPAD 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TL Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROID X2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*EVO3D_X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9082L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9192 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-i9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7105* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7108 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC Desire X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire * Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SGH-T989 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus F4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*pcdadr6350 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PJ83100* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*VS840 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/EVO_3D* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_C* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_Desire_X* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneSV Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_OneXplus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_S* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_V* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID BIONIC 4G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_XL* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_X* Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One_M8* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC_One* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXE_Beats Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_SensationXL_Beats* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sensation_Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI U8950D Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U9508 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI Y300* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTab A2107A-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTab A3000-H Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-F100L Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-LS860 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LOOX Plus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT28h Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT30p Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Lenovo A660 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4012 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 7 Lite Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*N90FHDRK Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ODYS-NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*NOON Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-Q Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5080CPRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP5580C Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*S500 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGH-I777 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT12 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SHW-M380W Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SPH-D710BST Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21i2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST21iv Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST23i Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXE_Beats_Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SensationXL_Beats_X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyC1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST26i* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sprint APX515CKT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT-H Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*UNO_X10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XELIO7PRO Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XENO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Xelio 10 Pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Xelio 7 pro Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP910 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TechniPad_10-3G Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Tablet-PC-4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Tablet-PC-4.1-Mozilla/5.0 (*Linux*Android?4.1*ADM8000KP_A Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6503 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGH-T889 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-R720 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G700-U10 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9988_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Browser="YouWave Android on PC"
+Version=Basic
+MajorVer=Basic
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*i9999_custom Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Browser="YouWave Android on PC"
+Version=Home
+MajorVer=Home
+Platform_Version="2.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST10216-1*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HUAWEI P6-U06 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*BN NookHD+ Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NookColor*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK BNRV200*)*Apple*WebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*NOOK*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PadFone 2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SurfTab_7.0 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-L160L Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus T2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7312 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I535* Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TP10.1-1500DC* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E7316 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*AT300SE Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6310N Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Cynus F3 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Cynus T5 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5301 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-1 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*VT10416-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*NEXT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PMP7100D3G Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Sprint APA9292KT Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST10216-2 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G525-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI Y530-U00 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC_Desire_500 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AN9G2I Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARNOVA 101 G4 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S6810P Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 785*) AppleWebKit*(KTHML,like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nuqleo; Zaffire 1010*) AppleWebKit*(KTHML,like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AX540 Build/*) AppleWebKit* (KHMTL,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TAB10-400*Build/*) AppleWebKit* (KHTML,*like*Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A328 Build/*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.0*NEC-0912 Build/*)AppleWebKit/*(KHTML, Like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0(*Linux*Android?4.2*BLU Studio 5.0 S II Build/*)AppleWebKit/*(KHTML,like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S785X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7275R Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G901F* Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G850F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910F Build/*) AppleWebKit/* (KHTML, like Gecko)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Lenovo A390*Mozilla/5.0 (*Linux*Android?4.0*Lenovo A390*) AppleWebKit* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[HTC_ChaCha_A810e/Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?1.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android** Build/*) AppleWebKit/* (KHTML,*like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Chrome*Safari*]
+Parent="Android WebView 4.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fake Firefox
+
+[Fake Firefox]
+Parent="DefaultProperties"
+Comment="Fake Firefox"
+Browser="Fake Firefox"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/6.0 (*) Gecko/* Firefox/*]
+Parent="Fake Firefox"
+
+[?Mozilla/* Firefox/*]
+Parent="Fake Firefox"
+
+[Mozilla/5.0 (Windows; U; Windows*rv:*) Firefox/*]
+Parent="Fake Firefox"
+
+[Mozilla/?.0+(Windows;+U;+Windows+NT+5.1;+*;+rv:*)+Gecko/*+Firefox/*]
+Parent="Fake Firefox"
+
+[Mozilla/5.0 Gecko*]
+Parent="Fake Firefox"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fake Safari
+
+[Fake Safari]
+Parent="DefaultProperties"
+Comment="Fake Safari"
+Browser="Fake Safari"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML like Gecko) Version/* Safari/*]
+Parent="Fake Safari"
+
+[Mozilla/5.0 (iPad; CPU iPhone OS 501*]
+Parent="Fake Safari"
+
+[Mozilla/5.0 (Android *) AppleWebKit/1.1 Version/* Mobile Safari/1.1]
+Parent="Fake Safari"
+
+[Intel Mac OS*]
+Parent="Fake Safari"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fake IE
+
+[Fake IE]
+Parent="DefaultProperties"
+Comment="Fake IE"
+Browser="Fake IE"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[( ; ; ; Trident/4.0;*]
+Parent="Fake IE"
+
+[( ; ; ; Trident/4.0;*]
+Parent="Fake IE"
+
+[( ; MSIE 6.0;*]
+Parent="Fake IE"
+
+[( ; MSIE 7.0;*]
+Parent="Fake IE"
+
+[( ; MSIE 8.0;*]
+Parent="Fake IE"
+
+[(compatible*; MSIE ?.?*;*]
+Parent="Fake IE"
+
+[(compatible; *; Trident/4.0*]
+Parent="Fake IE"
+
+[Microsoft Internet Explorer]
+Parent="Fake IE"
+
+[Internet Explore *]
+Parent="Fake IE"
+
+[Internet Explorer *]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 10.*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 10.?; *Trident/4.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 10.?; *Trident/5.0*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 11.*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 11.?; *Trident/4.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 11.?; *Trident/5.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 9.?; *Trident/4.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE 9.?; *Trident/?.0; Windows *]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible; MSIE ?.0; Windows NT 7.1; Trident/?.0*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible- MSIE ?.0- *]
+Parent="Fake IE"
+
+[?Mozilla/?.0 (compatible; MSIE*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[*Mozilla/?.0 (*compatible*;*MSIE 6.0; Linux*]
+Parent="Fake IE"
+
+[Empty (compatible*; MSIE 8.0*]
+Parent="Fake IE"
+
+[IE]
+Parent="Fake IE"
+
+[IE *]
+Parent="Fake IE"
+
+[IE/*]
+Parent="Fake IE"
+
+[IE6*]
+Parent="Fake IE"
+
+[IE7*]
+Parent="Fake IE"
+
+[IE8 *]
+Parent="Fake IE"
+
+[IE: *]
+Parent="Fake IE"
+
+[IEXPLORE.EXE]
+Parent="Fake IE"
+
+[Internet Explorer 8 *]
+Parent="Fake IE"
+
+[Internet Explorer]
+Parent="Fake IE"
+
+[Internet Explorer/*]
+Parent="Fake IE"
+
+[Internet Expolrer *]
+Parent="Fake IE"
+
+[InternetExploirer *]
+Parent="Fake IE"
+
+[InternetExplorer7*]
+Parent="Fake IE"
+
+[Internetexplorer*]
+Parent="Fake IE"
+
+[It\x*b4s me (compatible*; MSIE 8.0*]
+Parent="Fake IE"
+
+[MSIE 8.0*]
+Parent="Fake IE"
+
+[MSIE 9 RC (compatible*; MSIE 8.0*]
+Parent="Fake IE"
+
+[Microsoft Internet Explorer*]
+Parent="Fake IE"
+
+[Microsoft_Internet_Explorer*]
+Parent="Fake IE"
+
+[Mozilla 5./0 (compatible*; MSIE 8.0;*]
+Parent="Fake IE"
+
+[Mozilla/1.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/1.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/2.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/2.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/3.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/3.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/3.5 (compatible*; MSIE 8.0; *]
+Parent="Fake IE"
+
+[Mozilla/3.6* (compatible*; MSIE 9.0*; *]
+Parent="Fake IE"
+
+[Mozilla/4.0 ( ; MSIE 7.0; *]
+Parent="Fake IE"
+
+[Mozilla/4.0 ( ; MSIE 8.0; *]
+Parent="Fake IE"
+
+[Mozilla/4.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (Mozilla/4.0; MSIE 7.0; *]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; WINNT 6.0*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible*; MSIE 999*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; Mozilla/4.0 (compatible*; MSIE 8.0;*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible*; MSIE 7.0; *]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; ; Trident/5.0*]
+Parent="Fake IE"
+
+[Mozilla/6.0 (Linux; Unix OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/6.0 (Mac; Mac OS ?; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+
+[Mozilla/?.0 ( ; MSIE 6.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (Linux; Unix OS ?*) Gecko/* Internet Explorer/*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (Mac; Mac OS ?*) Gecko/* Internet Explorer/*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Commodore64; *]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; ; Trident/4.0*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; Linux*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 8.1*]
+Parent="Fake IE"
+
+[Msie 9 *]
+Parent="Fake IE"
+
+[ie/*]
+Parent="Fake IE"
+
+[internetexplorer*]
+Parent="Fake IE"
+
+[?Mozilla/5.0 (Windows; U;*MSIE 6.0*]
+Parent="Fake IE"
+Platform="Win32"
+Win32="true"
+
+[AIM/30 (*compatible*;*MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[CDR/1.7.1 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows)]
+Parent="Fake IE"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Explorer (*compatible*;*MSIE 7.0; Windows ; Trident/4.0*]
+Parent="Fake IE"
+Platform="Win32"
+Win32="true"
+
+[Explorer (*compatible*;*MSIE 7.0; Windows NT 5.1; Trident/4.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Explorer 8 (*compatible*;*MSIE 7.0; Windows NT 5.1; Trident/4.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Explorer 8.0 (compatible*; MSIE 8.0; Windows XP; Trident/4.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[F (*compatible*;*MSIE 6.0; Windows NT 5.1*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[IE/?.0 (*Windows NT 5.1*rv:1.8*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[M (*compatible*;*MSIE 6.0; Windows NT 5.1*)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[M (*compatible*;*MSIE 7.0; Windows NT 5.1*)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[M (*compatible*;*MSIE 8.0; Windows NT 5.1*)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[MSIE/?.0 (compatible*; MSIE 9.0*; Windows NT 6.0; Trident/5.0*]
+Parent="Fake IE"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/1.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/2.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/3.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/3.5 (compatible*; MSIE 7.0; Windows NT 5.1; *]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 ( ; MSIE 8.0; Windows NT 5.1; Trident/4.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows ME; *) Opera 9.6*]
+Parent="Fake IE"
+Platform="WinME"
+Platform_Version=ME
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows) AppleWebKit/* (KHTML,*like Gecko*) Safari/* Chrome/12.*]
+Parent="Fake IE"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Safari/*]
+Parent="Fake IE"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; Windows XP*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible*; MSIE 8.0*; Windows NT 7.0;*Trident/4.0*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* MSIE 6.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (Windows; U; MSIE 9.0*; *]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Opera 11.0; Windows Server 2003; *]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Ente*]
+Parent="Fake IE"
+
+[Mozilla/6.0 (Windows; ?; Windows NT; *) Gecko/* Internet Explorer/7*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/?.0 ( ; MSIE 7.0; Windows NT 6.1; *]
+Parent="Fake IE"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows 2000*]
+Parent="Fake IE"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows 5.1*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows 98; *]
+Parent="Fake IE"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows NT 32*]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows NT 4.1; *]
+Parent="Fake IE"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows NT 5.5*]
+Parent="Fake IE"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows NT)*]
+Parent="Fake IE"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows Vista*]
+Parent="Fake IE"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows XP; *]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows XPP; *]
+Parent="Fake IE"
+
+[Mozilla/?.0 (compatible*; MSIE 7.0; Windows7; *]
+Parent="Fake IE"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; Windows 7*]
+Parent="Fake IE"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; Windows 98;*]
+Parent="Fake IE"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; Windows NT 4.1;*]
+Parent="Fake IE"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/?.0 (compatible*; MSIE 8.0; Windows XP*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[WOFVNCBVHKN (*compatible*;*MSIE 7.0; Windows NT 5.1*)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[ZJZT (compatible*; MSIE 8.0; Windows NT 5.1; Trident/4.0*)]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[explorer (compatible*; MSIE 8.0; Windows NT 5.1; Trident/4.0*]
+Parent="Fake IE"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[explorer 9 (compatible*; MSIE 9.0*; Windows 7; Trident/5.0*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Windows; ?; MSIE*; Macintosh*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE*; Macintosh*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Windows; ?; MSIE*; Linux*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE*; Linux*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 6.1*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE 6.1*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE 9.1*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (Windows; U; MSIE 9.0; Windows NT 9.0; en-US)]
+Parent="Fake IE"
+
+[Mozilla/4.0(compatible;MSIE*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 9.0*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; b2w 0.1)*]
+Parent="Fake IE"
+
+[Mozilla/4.0 (compatible; MSIE 8.0; Win32)*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE*]
+Parent="Fake IE"
+
+[*Trident/BD6*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; MSIE 11*]
+Parent="Fake IE"
+
+[Mozilla/5.0 (compatible; rv:33.0; ; Trident/5.0)*]
+Parent="Fake IE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Fake Browser
+
+[Fake Browser]
+Parent="DefaultProperties"
+Comment="Fake Browser"
+Browser="Fake Browser"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[* UP.Browser/*]
+Parent="Fake Browser"
+
+[* UP.Browser/6.*]
+Parent="Fake Browser"
+
+[* UP.Browser/6.2*]
+Parent="Fake Browser"
+
+[*Google Chrome*]
+Parent="Fake Browser"
+
+[5.0 (*Mac OS X*) AppleWeb\t\tKit/* (KHTML,*like Gecko*) Version/*Safari/*]
+Parent="Fake Browser"
+
+[BlackBerry (*) User-Agent: BlackBerry*]
+Parent="Fake Browser"
+
+[Firefox 3.6*]
+Parent="Fake Browser"
+
+[Firefox*]
+Parent="Fake Browser"
+
+[Firefox/*]
+Parent="Fake Browser"
+
+[Firefox/3.6*]
+Parent="Fake Browser"
+
+[Firefox/5.*]
+Parent="Fake Browser"
+
+[Firefox/8*]
+Parent="Fake Browser"
+
+[Mozilla 5./0 (compatible) Opera or Gecko]
+Parent="Fake Browser"
+
+[Mozilla/1.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/1.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/1.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/1.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/2.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/2.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/2.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/2.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/3.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/3.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/3.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/3.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/3.4* (compatible; *]
+Parent="Fake Browser"
+
+[Mozilla/3.5.0 (compatible; Linux*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 *]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/4.4*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) profiler Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (00*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (; *CPU iPhone OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Hallo; *CPU iPhone OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Real Madrid; U; CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Thug-Life; *CPU iPhone OS 4_1* like Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (U; Linux) AppleWebKit/* (KHTML,*like Gecko*) kded/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/5.0; TOB* (*) Gecko/* Firefox/2.*]
+Parent="Fake Browser"
+
+[Mozilla/5.0; TOB* (*) Gecko/* Firefox/3.*]
+Parent="Fake Browser"
+
+[Mozilla/6.0 (Linux; Unix OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/6.0 (Linux; Unix OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/6.0 (Mac; Mac OS ?; *) Gecko/*]
+Parent="Fake Browser"
+
+[Mozilla/6.0 (Mac; Mac OS ?; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+
+[Mozilla/6.6* (compatible; *]
+Parent="Fake Browser"
+
+[Mozilla/7.0 (*Linux*) Gecko/* Firefox/1.*]
+Parent="Fake Browser"
+
+[Mozilla/8.0 *]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (0*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Linux; Unix OS ?; *) Gecko/* Firefox/1*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Linux; Unix OS ?; *) Gecko/* Google Chrome/2*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Linux; Unix OS ?; *) Gecko/* Opera/*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Linux; Unix OS ?; *) Gecko/*Safari/*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Mac; Mac OS ?; *) Gecko/* Firefox/1.*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Mac; Mac OS ?; *) Gecko/* Google Chrome/2*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Mac; Mac OS ?; *) Gecko/* Opera/*]
+Parent="Fake Browser"
+
+[Mozilla/?.0 (Mac; Mac OS ?; *) Gecko/*Safari/*]
+Parent="Fake Browser"
+
+[QQ\x*HD* (iPad; iPhone OS 4.3.3; *)*]
+Parent="Fake Browser"
+
+[http://*]
+Parent="Fake Browser"
+
+[https://*]
+Parent="Fake Browser"
+
+[r451* UP.Browser/6.2*Novarra-Vision/*]
+Parent="Fake Browser"
+
+[GoogleBot/* (Windows 98 1.1; *;)]
+Parent="Fake Browser"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/1.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/1.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/2.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/2.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/3.0 (Windows NT 6.1*]
+Parent="Fake Browser"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/3.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/3.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/4.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/5.0 (*Linux i686; *; rv:99.0) Gecko/* Firefox/*]
+Parent="Fake Browser"
+Platform="Linux"
+
+[Mozilla/5.0 (Windows; ?; Windows NT 3.1; *) AppleWebKit/* (KHTML,*like Gecko*) Version/9.*Safari/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Platform_Version="3.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) CEF/*Safari/*]
+Parent="Fake Browser"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/5.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/5.0 (Windows; U; Windows 4.10; *) Gecko/* Firefox/3.*]
+Parent="Fake Browser"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.3 (*Windows NT 5.2*) Gecko/* Firefox/3.*]
+Parent="Fake Browser"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT ?.?; *) *Firefox/2.0*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT ?.?; *) *Firefox/3.0*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT ?.?; *) Firefox/0.*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT ?.?; *) Firefox/1.*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT; *) Gecko/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.0 (Windows; ?; Windows NT; *) Gecko/* Mozilla/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/6.2 (Linux; U; Windows Vista*) Gecko/* Firefox/1.5*]
+Parent="Fake Browser"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/6.2 (Linux; U; Windows Vista*) Gecko/* Firefox/5*]
+Parent="Fake Browser"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/?.0 (Windows; ?; Windows NT*) Gecko/*Safari/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/?.0 (Windows; ?; Windows NT; *) Gecko/* Firefox/1*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/?.0 (Windows; ?; Windows NT; *) Gecko/* Google Chrome/2*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Mozilla/?.0 (Windows; ?; Windows NT; *) Gecko/* Opera/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[Opera/9.9* (Windows NT ?.?; U; *) Presto/*]
+Parent="Fake Browser"
+Platform="WinNT"
+Win32="true"
+
+[mozilla/5.0 (compatible; firefox/*; Windows NT*; Trident/*]
+Parent="Fake Browser"
+
+[Mojilla/5.0 (H11; U; Linux!x86_64;\xa0en-US+ rf:*) Gecko/* Firefox/2.*]
+Parent="Fake Browser"
+Platform="Linux"
+
+[Mozilla/5.0 (Windows NT.*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Linux; U; Android * App3leWebKit/*]
+Parent="Fake Browser"
+Browser="Fake Android"
+
+[Mozilla/4.0 (compatible;Android;320x480)]
+Parent="Fake Browser"
+Browser="Fake Android"
+
+[Mozilla/5.0 (Linux; *Android*) AppleWebKit/* (KHTML, like Geccko)*]
+Parent="Fake Browser"
+Browser="Fake Android"
+
+[Mozilla/*Windows NT 7.1*]
+Parent="Fake Browser"
+
+[Windows; ?; Windows*]
+Parent="Fake Browser"
+
+[Mozila*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (compatible; MSIE ?.?; Windows NT ?.?) Netscape/*]
+Parent="Fake Browser"
+
+[Mozilla/4.0 (compatible; MSIE *) Netscape/*]
+Parent="Fake Browser"
+
+[?x22Mozilla*]
+Parent="Fake Browser"
+
+[(null)*]
+Parent="Fake Browser"
+
+[()*]
+Parent="Fake Browser"
+
+[label=*]
+Parent="Fake Browser"
+
+[Mozilla/4.0+*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (;;;*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 ()*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (X11; U; Windows NT 6;*]
+Parent="Fake Browser"
+
+[Mozilla/5.0 (Windows NT 1?.*]
+Parent="Fake Browser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HTMLParser
+
+[HTMLParser]
+Parent="DefaultProperties"
+Comment="HTMLParser"
+Browser="HTMLParser"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[HTMLParser/1.*]
+Parent="HTMLParser"
+Version="1.0"
+MajorVer=1
+
+[HTMLParser/2.*]
+Parent="HTMLParser"
+Version="2.0"
+MajorVer=2
+
+[HTMLParser/*]
+Parent="HTMLParser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; libwww
+
+[libwww]
+Parent="DefaultProperties"
+Comment="libwww"
+Browser="libwww"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[ShowXML/* libwww/5.4*]
+Parent="libwww"
+Version="5.4"
+MajorVer=5
+MinorVer=4
+
+[libwww-perl/5.8*]
+Parent="libwww"
+Version="5.8"
+MajorVer=5
+MinorVer=8
+
+[Mozilla/* (windows; U; *) Gecko/* libwww-perl/6.0*]
+Parent="libwww"
+Version="6.0"
+MajorVer=6
+
+[libwww-perl/6.03*]
+Parent="libwww"
+Version="6.03"
+MajorVer=6
+MinorVer=03
+
+[libwww-perl/*]
+Parent="libwww"
+
+[*libwww*]
+Parent="libwww"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; lwp
+
+[lwp]
+Parent="DefaultProperties"
+Comment="lwp"
+Browser="lwp"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[lwp*]
+Parent="lwp"
+
+[LWP::Simple*]
+Parent="lwp"
+
+[lwp-download*]
+Parent="lwp"
+
+[lwp-request*]
+Parent="lwp"
+
+[lwp-rget*]
+Parent="lwp"
+
+[lwp-trivial*]
+Parent="lwp"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OSSProxy
+
+[OSSProxy]
+Parent="DefaultProperties"
+Comment="OSSProxy"
+Browser="OSSProxy"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[OSSProxy 1.3*]
+Parent="OSSProxy"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+
+[OSSProxy*]
+Parent="OSSProxy"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 1.1
+
+[Yandex Browser 1.1]
+Parent="DefaultProperties"
+Comment="Yandex Browser 1.1"
+Browser="Yandex Browser"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.1*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.1*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.1*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.1*Chrome/*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.1*Chrome/*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.1*Chrome/*Safari/*]
+Parent="Yandex Browser 1.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 1.5
+
+[Yandex Browser 1.5]
+Parent="DefaultProperties"
+Comment="Yandex Browser 1.5"
+Browser="Yandex Browser"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.5*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.5*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.5*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.5*Chrome/*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.5*Chrome/*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.5*Chrome/*Safari/*]
+Parent="Yandex Browser 1.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 1.6
+
+[Yandex Browser 1.6]
+Parent="DefaultProperties"
+Comment="Yandex Browser 1.6"
+Browser="Yandex Browser"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.6*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.6*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.6*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.6*Chrome/*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.6*Chrome/*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.6*Chrome/*Safari/*]
+Parent="Yandex Browser 1.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 1.7
+
+[Yandex Browser 1.7]
+Parent="DefaultProperties"
+Comment="Yandex Browser 1.7"
+Browser="Yandex Browser"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.7*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.7*Chrome/*Safari/*]
+Parent="Yandex Browser 1.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; rogerbot
+
+[rogerbot]
+Parent="DefaultProperties"
+Comment="Rogerbot"
+Browser="Rogerbot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[rogerbot/1.*]
+Parent="rogerbot"
+Version="1.0"
+MajorVer=1
+
+[rogerbot/*]
+Parent="rogerbot"
+
+[RankFlex]
+Parent="General Crawlers"
+Comment="RankFlex"
+Browser="RankFlex"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[RankFlex.com Webspider]
+Parent="RankFlex"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sogou Explorer 2.0
+
+[Sogou Explorer 2.0]
+Parent="DefaultProperties"
+Comment="Sogou Explorer 2.0"
+Browser="Sogou Explorer"
+Version="2.0"
+MajorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+CssVersion=2
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="FreeBSD"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win95"
+Platform_Version=95
+Win32="true"
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinNT"
+Platform_Version="4.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* SE 2.*]
+Parent="Sogou Explorer 2.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 1.20
+
+[Yandex Browser 1.20]
+Parent="DefaultProperties"
+Comment="Yandex Browser 1.20"
+Browser="Yandex Browser"
+Version="1.20"
+MajorVer=1
+MinorVer=20
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/1.20*Chrome/*Safari/*]
+Parent="Yandex Browser 1.20"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 1.20 for Android]
+Parent="Yandex Browser 1.20"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/1.20* Safari/*]
+Parent="Yandex Browser 1.20 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 13.10
+
+[Yandex Browser 13.10]
+Parent="DefaultProperties"
+Comment="Yandex Browser 13.10"
+Browser="Yandex Browser"
+Version="13.10"
+MajorVer=13
+MinorVer=10
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.10*Chrome/*Safari/*]
+Parent="Yandex Browser 13.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 13.10 for Android]
+Parent="Yandex Browser 13.10"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.10* Safari/*]
+Parent="Yandex Browser 13.10 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 13.12
+
+[Yandex Browser 13.12]
+Parent="DefaultProperties"
+Comment="Yandex Browser 13.12"
+Browser="Yandex Browser"
+Version="13.12"
+MajorVer=13
+MinorVer=12
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/13.12*Chrome/*Safari/*]
+Parent="Yandex Browser 13.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 13.12 for Android]
+Parent="Yandex Browser 13.12"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/13.12* Safari/*]
+Parent="Yandex Browser 13.12 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.0
+
+[Yandex Browser 14.0]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.0"
+Browser="Yandex Browser"
+Version="14.0"
+MajorVer=14
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.0*Chrome/*Safari/*]
+Parent="Yandex Browser 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.0 for Android]
+Parent="Yandex Browser 14.0"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.0* Safari/*]
+Parent="Yandex Browser 14.0 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.2
+
+[Yandex Browser 14.2]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.2"
+Browser="Yandex Browser"
+Version="14.2"
+MajorVer=14
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.2*Chrome/*Safari/*]
+Parent="Yandex Browser 14.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.2 for Android]
+Parent="Yandex Browser 14.2"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.2* Safari/*]
+Parent="Yandex Browser 14.2 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.4
+
+[Yandex Browser 14.4]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.4"
+Browser="Yandex Browser"
+Version="14.4"
+MajorVer=14
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.4*Chrome/*Safari/*]
+Parent="Yandex Browser 14.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.4 for Android]
+Parent="Yandex Browser 14.4"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.4* Safari/*]
+Parent="Yandex Browser 14.4 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.5
+
+[Yandex Browser 14.5]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.5"
+Browser="Yandex Browser"
+Version="14.5"
+MajorVer=14
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.5*Chrome/*Safari/*]
+Parent="Yandex Browser 14.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.5 for Android]
+Parent="Yandex Browser 14.5"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.5* Safari/*]
+Parent="Yandex Browser 14.5 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.6
+
+[Yandex Browser 14.6]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.6"
+Browser="Yandex Browser"
+Version="14.6"
+MajorVer=14
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.6*Chrome/*Safari/*]
+Parent="Yandex Browser 14.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.6 for Android]
+Parent="Yandex Browser 14.6"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.6* Safari/*]
+Parent="Yandex Browser 14.6 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaBrowser 14.7
+
+[Yandex Browser 14.7]
+Parent="DefaultProperties"
+Comment="Yandex Browser 14.7"
+Browser="Yandex Browser"
+Version="14.7"
+MajorVer=14
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) YaBrowser/14.7*Chrome/*Safari/*]
+Parent="Yandex Browser 14.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Yandex Browser 14.7 for Android]
+Parent="Yandex Browser 14.7"
+Platform="Android"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android*HTC One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/* YaBrowser/14.7* Safari/*]
+Parent="Yandex Browser 14.7 for Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 14.0
+
+[Opera Mobile 14.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 14.0"
+Browser="Opera Mobile"
+Version="14.0"
+MajorVer=14
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/14.*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/14.0*]
+Parent="Opera Mobile 14.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 15.0
+
+[Opera Mobile 15.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 15.0"
+Browser="Opera Mobile"
+Version="15.0"
+MajorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/15.*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera Mobile 15.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 16.0
+
+[Opera Mobile 16.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 16.0"
+Browser="Opera Mobile"
+Version="16.0"
+MajorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/16.*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera Mobile 16.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 17.0
+
+[Opera Mobile 17.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 17.0"
+Browser="Opera Mobile"
+Version="17.0"
+MajorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/17.*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera Mobile 17.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 18.0
+
+[Opera Mobile 18.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 18.0"
+Browser="Opera Mobile"
+Version="18.0"
+MajorVer=18
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/18.*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera Mobile 18.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 19.0
+
+[Opera Mobile 19.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 19.0"
+Browser="Opera Mobile"
+Version="19.0"
+MajorVer=19
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/19.*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera Mobile 19.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 20.0
+
+[Opera Mobile 20.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 20.0"
+Browser="Opera Mobile"
+Version="20.0"
+MajorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/20.*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera Mobile 20.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 21.0
+
+[Opera Mobile 21.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 21.0"
+Browser="Opera Mobile"
+Version="21.0"
+MajorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/21.*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera Mobile 21.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 22.0
+
+[Opera Mobile 22.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 22.0"
+Browser="Opera Mobile"
+Version="22.0"
+MajorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/22.*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera Mobile 22.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 23.0
+
+[Opera Mobile 23.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 23.0"
+Browser="Opera Mobile"
+Version="23.0"
+MajorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/23.*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera Mobile 23.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 24.0
+
+[Opera Mobile 24.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 24.0"
+Browser="Opera Mobile"
+Version="24.0"
+MajorVer=24
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/24.*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera Mobile 24.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 25.0
+
+[Opera Mobile 25.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 25.0"
+Browser="Opera Mobile"
+Version="25.0"
+MajorVer=25
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/25.*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera Mobile 25.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 26.0
+
+[Opera Mobile 26.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 26.0"
+Browser="Opera Mobile"
+Version="26.0"
+MajorVer=26
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/26.*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera Mobile 26.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 27.0
+
+[Opera Mobile 27.0]
+Parent="DefaultProperties"
+Comment="Opera Mobile 27.0"
+Browser="Opera Mobile"
+Version="27.0"
+MajorVer=27
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-P3100 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*Slider SL101 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* OPR/27.*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera Mobile 27.0"
+Platform="Android"
+Win32="false"
+
+[Linkdex Bot]
+Parent="General Crawlers"
+Comment="Linkdex Bot"
+Browser="Linkdex Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; linkdexbot/2.0*]
+Parent="Linkdex Bot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; linkdexbot/2.1*]
+Parent="Linkdex Bot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[Mozilla/5.0 (compatible; linkdexbot/*]
+Parent="Linkdex Bot"
+
+[Mozilla/5.0 (iPhone; *CPU iPhone OS 4_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/4.0.5 Mobile/* Safari/* (compatible; linkdexbot-mobile/2.1*]
+Parent="Linkdex Bot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[picmole Bot]
+Parent="General Crawlers"
+Comment="picmole Bot"
+Browser="picmole Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible;picmole/1.* +http://www.picmole.com)]
+Parent="picmole Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible;picmole/* +http://www.picmole.com)]
+Parent="picmole Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.14
+
+[Opera Mobile 12.14]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.14"
+Browser="Opera Mobile"
+Version="12.14"
+MajorVer=12
+MinorVer=14
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.14*]
+Parent="Opera Mobile 12.14"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.15
+
+[Opera Mobile 12.15]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.15"
+Browser="Opera Mobile"
+Version="12.15"
+MajorVer=12
+MinorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.15*]
+Parent="Opera Mobile 12.15"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.16
+
+[Opera Mobile 12.16]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.16"
+Browser="Opera Mobile"
+Version="12.16"
+MajorVer=12
+MinorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.16*]
+Parent="Opera Mobile 12.16"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.17
+
+[Opera Mobile 12.17]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.17"
+Browser="Opera Mobile"
+Version="12.17"
+MajorVer=12
+MinorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.17*]
+Parent="Opera Mobile 12.17"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 11.60
+
+[Opera Mobile 11.60]
+Parent="DefaultProperties"
+Comment="Opera Mobile 11.60"
+Browser="Opera Mobile"
+Version="11.60"
+MajorVer=11
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/11.60*]
+Parent="Opera Mobile 11.60"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.00
+
+[Opera Mobile 12.00]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.00"
+Browser="Opera Mobile"
+Version="12.00"
+MajorVer=12
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.00*]
+Parent="Opera Mobile 12.00"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.10
+
+[Opera Mobile 12.10]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.10"
+Browser="Opera Mobile"
+Version="12.10"
+MajorVer=12
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.10*]
+Parent="Opera Mobile 12.10"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.11
+
+[Opera Mobile 12.11]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.11"
+Browser="Opera Mobile"
+Version="12.11"
+MajorVer=12
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.11*]
+Parent="Opera Mobile 12.11"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.12
+
+[Opera Mobile 12.12]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.12"
+Browser="Opera Mobile"
+Version="12.12"
+MajorVer=12
+MinorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.12*]
+Parent="Opera Mobile 12.12"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 12.13
+
+[Opera Mobile 12.13]
+Parent="DefaultProperties"
+Comment="Opera Mobile 12.13"
+Browser="Opera Mobile"
+Version="12.13"
+MajorVer=12
+MinorVer=13
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?2.3*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Android?2.3*Linux*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.80*(*Android; Linux*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android?4.0*Linux*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Android 4.1*Linux*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Linux*Android*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="Android"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*SymbOS*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="SymbianOS"
+Win32="false"
+isTablet="true"
+
+[Opera/9.80*(*Windows Mobile*Opera Tablet*)*Version/12.13*]
+Parent="Opera Mobile 12.13"
+Platform="WinMobile"
+Win32="false"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 11.50
+
+[Opera Mobile 11.50]
+Parent="DefaultProperties"
+Comment="Opera Mobile 11.50"
+Browser="Opera Mobile"
+Version="11.50"
+MajorVer=11
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/11.50*]
+Parent="Opera Mobile 11.50"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 11.10
+
+[Opera Mobile 11.10]
+Parent="DefaultProperties"
+Comment="Opera Mobile 11.10"
+Browser="Opera Mobile"
+Version="11.10"
+MajorVer=11
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="WinMobile"
+Win32="false"
+
+[* Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[* Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[* Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[* Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[* Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Huawei/*/HUAWEI-G7300 * Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Huawei/*/HUAWEI-G7300 * Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Huawei/*/HUAWEI-G7300 * Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Huawei/*/HUAWEI-G7300 * Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Huawei/*/HUAWEI-G7300 * Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/9.80 (MTK*) Presto/* Version/11.10*]
+Parent="Opera Mobile 11.10"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 11.00
+
+[Opera Mobile 11.00]
+Parent="DefaultProperties"
+Comment="Opera Mobile 11.00"
+Browser="Opera Mobile"
+Version="11.00"
+MajorVer=11
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/11.00*]
+Parent="Opera Mobile 11.00"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 10.00
+
+[Opera Mobile 10.00]
+Parent="DefaultProperties"
+Comment="Opera Mobile 10.00"
+Browser="Opera Mobile"
+Version="10.00"
+MajorVer=10
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="WinMobile"
+Win32="false"
+
+[Browser/Opera Opera/*(MTK*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[*Opera/*(MTK*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[HTC_Touch_HD2_T8282 Opera/10.00*]
+Parent="Opera Mobile 10.00"
+
+[HTC_Touch_HD2_T8585 Opera/10.00*]
+Parent="Opera Mobile 10.00"
+
+[HTC_Touch_HD_T8282 Opera/10.00*]
+Parent="Opera Mobile 10.00"
+
+[Huawei/*/HUAWEI-G7300 Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[ASTRO36_TD/* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.00*]
+Parent="Opera Mobile 10.00"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 10.10
+
+[Opera Mobile 10.10]
+Parent="DefaultProperties"
+Comment="Opera Mobile 10.10"
+Browser="Opera Mobile"
+Version="10.10"
+MajorVer=10
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="WinMobile"
+Win32="false"
+
+[Browser/Opera Opera/*(MTK*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[*Opera/*(MTK*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[HTC_Touch_HD2_T8282 Opera/10.10*]
+Parent="Opera Mobile 10.10"
+
+[HTC_Touch_HD2_T8585 Opera/10.10*]
+Parent="Opera Mobile 10.10"
+
+[HTC_Touch_HD_T8282 Opera/10.10*]
+Parent="Opera Mobile 10.10"
+
+[Huawei/*/HUAWEI-G7300 Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[ASTRO36_TD/* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.10*]
+Parent="Opera Mobile 10.10"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 10.50
+
+[Opera Mobile 10.50]
+Parent="DefaultProperties"
+Comment="Opera Mobile 10.50"
+Browser="Opera Mobile"
+Version="10.50"
+MajorVer=10
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="WinMobile"
+Win32="false"
+
+[Browser/Opera Opera/*(MTK*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[*Opera/*(MTK*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[HTC_Touch_HD2_T8282 Opera/10.50*]
+Parent="Opera Mobile 10.50"
+
+[HTC_Touch_HD2_T8585 Opera/10.50*]
+Parent="Opera Mobile 10.50"
+
+[HTC_Touch_HD_T8282 Opera/10.50*]
+Parent="Opera Mobile 10.50"
+
+[Huawei/*/HUAWEI-G7300 Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[ASTRO36_TD/* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.50*]
+Parent="Opera Mobile 10.50"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 10.60
+
+[Opera Mobile 10.60]
+Parent="DefaultProperties"
+Comment="Opera Mobile 10.60"
+Browser="Opera Mobile"
+Version="10.60"
+MajorVer=10
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="WinMobile"
+Win32="false"
+
+[Browser/Opera Opera/*(MTK*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[*Opera/*(MTK*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[HTC_Touch_HD2_T8282 Opera/10.60*]
+Parent="Opera Mobile 10.60"
+
+[HTC_Touch_HD2_T8585 Opera/10.60*]
+Parent="Opera Mobile 10.60"
+
+[HTC_Touch_HD_T8282 Opera/10.60*]
+Parent="Opera Mobile 10.60"
+
+[Huawei/*/HUAWEI-G7300 Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[ASTRO36_TD/* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.60*]
+Parent="Opera Mobile 10.60"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 10.70
+
+[Opera Mobile 10.70]
+Parent="DefaultProperties"
+Comment="Opera Mobile 10.70"
+Browser="Opera Mobile"
+Version="10.70"
+MajorVer=10
+MinorVer=70
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Opera/9.80*(*Android; Linux*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.0*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.1*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.2*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.3*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android?4.4*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Opera/9.80*(*Linux*Android*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[Opera/9.80*(*SymbOS*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="SymbianOS"
+Win32="false"
+
+[Opera/9.80*(*Windows Mobile*Opera Mobi*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="WinMobile"
+Win32="false"
+
+[Browser/Opera Opera/*(MTK*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[*Opera/*(MTK*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[HTC_Touch_HD2_T8282 Opera/10.70*]
+Parent="Opera Mobile 10.70"
+
+[HTC_Touch_HD2_T8585 Opera/10.70*]
+Parent="Opera Mobile 10.70"
+
+[HTC_Touch_HD_T8282 Opera/10.70*]
+Parent="Opera Mobile 10.70"
+
+[Huawei/*/HUAWEI-G7300 Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[ASTRO36_TD/* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+[* Browser/Opera *Profile/MIDP* Opera/*(MTK*)*Version/10.70*]
+Parent="Opera Mobile 10.70"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 9.70
+
+[Opera Mobile 9.70]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="9.70"
+MajorVer=9
+MinorVer=70
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[HD_mini_T5555 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_HD2_T8585 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_HD2_T9193 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_HD_T8282 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_HD_mini_T5555 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_Touch_Diamond2_T5353 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_Touch_HD2_T8585 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_Touch_Pro2_T7373 Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HTC_Xperia Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[HUAWEI-M735/* Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[Vodafone/1.0/HTC_HD2/* Opera/9.7*]
+Parent="Opera Mobile 9.70"
+
+[Vodafone/1.0/HTC_HD_mini/Opera 9.7*]
+Parent="Opera Mobile 9.70"
+
+[Opera/9.7 (Windows NT 5.1; HTC_HD2/1.0; ?*)]
+Parent="Opera Mobile 9.70"
+Platform="WinMobile"
+Win32="false"
+
+[HTC_HD_mini_T5555 Opera/9.7 (Windows NT 5.1; U*)]
+Parent="Opera Mobile 9.70"
+Platform="WinMobile"
+Win32="false"
+
+[Mozilla/5.0 (HTC-T9199/*;U;Windows Mobile/6.5;*;*;CTC/2.0) Opera/9.7*]
+Parent="Opera Mobile 9.70"
+Platform="WinMobile"
+Win32="false"
+
+[Vodafone/1.0/HTC_HD2/* (*Opera/9.7* (Windows NT 5.1; U*)]
+Parent="Opera Mobile 9.70"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 9.60
+
+[Opera Mobile 9.60]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="9.60"
+MajorVer=9
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Opera/9.6* Presto/2.2*/SAMSUNG-GT-I8320*]
+Parent="Opera Mobile 9.60"
+
+[SAMSUNG-GT-I6410* Linux/* Opera/9.6*]
+Parent="Opera Mobile 9.60"
+
+[SAMSUNG-GT-I8320* Linux/* Opera/9.6*]
+Parent="Opera Mobile 9.60"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 9.50
+
+[Opera Mobile 9.50]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="9.50"
+MajorVer=9
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[HTC-P4600/1.2 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC/ 1.0 Opera 9.5]
+Parent="Opera Mobile 9.50"
+
+[HTC_HD_T8282 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_P3700 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_P3701 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch2_T3333 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_3G_T3232 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_Cruise_T4242 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_Diamond2_T5353 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_HD Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_HD_T8282 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_Pro2_T7272 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_Pro2_T7373 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC_Touch_Pro_T7272 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-GT-B7610/* Opera 9.5]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-GT-i8000* (*Opera Mobi; U*Opera 9.5]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-S8000* Opera/9.5 *]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-S8300* Opera/9.5 *]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-SGH-L810-Vodafone/L810BUHEC SHP/VPP/R5 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-SGH-i900* Opera 9.5]
+Parent="Opera Mobile 9.50"
+
+[SAMSUNG-SGH-i900/1.0 Opera 9.5*]
+Parent="Opera Mobile 9.50"
+
+[Swisscom/1.0/HTC_Touch_Pro2/ Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/HTC_Diamond Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/HTC_Touch_3G_T3232 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/HTC_Touch_Diamond2 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/HTC_Touch_Diamond2/* Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/HTC_Touch_Pro Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Vodafone/1.0/SAMSUNG-GT-B7610/BUIH3 Browser/Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Xda_Diamond_2 Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Xda_diamond Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[Xda_diamond_pro Opera/9.5*]
+Parent="Opera Mobile 9.50"
+
+[HTC-ST6356/* (*Opera/9.5* (Windows NT 5.1; U*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[HTC-ST7377/* (*Opera/9.5* (Windows NT 5.1; U*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[HTC_Touch2_T3335 Opera/9.50 (Windows*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-A3100/ Opera/9.5* (Microsoft Windows; PPC; Opera Mobi/*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[O2/1.0/SEX1i/R3AA Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*UP.Link/*]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.5 (Microsoft Windows; PPC*Opera Mobile/*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.5 (Microsoft Windows; PPC; Opera Mobi/*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.5* Beta (Microsoft Windows; PPC; Opera Mobi/*]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[PPC; 240x320; HTC_Mega-T3333-Orange; OpVer* Opera/9.5* (Microsoft Windows 6.5; U;*)]
+Parent="Opera Mobile 9.50"
+Platform="WinMobile"
+Win32="false"
+
+[SAMSUNG-GT-B7300/* (Windows CE; Opera Mobi; ?*Opera 9.5]
+Parent="Opera Mobile 9.50"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 9.00
+
+[Opera Mobile 9.00]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="9.00"
+MajorVer=9
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Opera/9.* (Microsoft Windows; PPC; Opera Mobi/*)]
+Parent="Opera Mobile 9.00"
+Platform="WinMobile"
+Win32="false"
+
+[Opera/9.* (Windows*; Opera Mobi/*) Presto/2.*]
+Parent="Opera Mobile 9.00"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 8.65
+
+[Opera Mobile 8.65]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="8.65"
+MajorVer=8
+MinorVer=65
+Platform="WinMobile"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[SonyEricssonG700/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Symbian OS*Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="SymbianOS"
+Win32="false"
+
+[SonyEricssonG900/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Symbian OS*Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="SymbianOS"
+Win32="false"
+
+[SonyEricssonG900/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Symbian OS; 9*Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="SymbianOS"
+Win32="false"
+
+[SonyEricssonP1i/* Mozilla/4.0 (compatible*; MSIE 6.0; Symbian OS; *) Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="SymbianOS"
+Win32="false"
+
+[SonyEricssonP990i/R100 Mozilla/4.0 (compatible*; MSIE 6.0; Symbian OS; *) Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="SymbianOS"
+Win32="false"
+
+[MOT-MOTORAZRV9x/9E.03.* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.65*]
+Parent="Opera Mobile 8.65"
+
+[MOT-RAZRV3XXR_J/97.04.30R* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.65*]
+Parent="Opera Mobile 8.65"
+
+[MOT-RAZRV3xxR/97.04.2BR BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.65*]
+Parent="Opera Mobile 8.65"
+
+[MOT-Q9/01.02.23R Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE*Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="WinCE"
+Win32="false"
+
+[MOT-Q9/APVER Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; Smartphone; 240x320) Opera 8.65*]
+Parent="Opera Mobile 8.65"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 8.60
+
+[Opera Mobile 8.60]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="8.60"
+MajorVer=8
+MinorVer=60
+Platform="WinMobile"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[MOT-MOTORAZRV9/A0.03.* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; *) * Opera 8.6*]
+Parent="Opera Mobile 8.60"
+
+[MOT-MOTORAZRV9/A0.03.*1 BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; *) * Opera 8.6*]
+Parent="Opera Mobile 8.60"
+
+[MOT-MOTORAZRV9x/9E.03.* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.6*]
+Parent="Opera Mobile 8.60"
+
+[MOT-RAZRV3XXR_J/97.04.30R* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.6*]
+Parent="Opera Mobile 8.60"
+
+[MOT-RAZRV3xxR/97.04.2BR BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.6*]
+Parent="Opera Mobile 8.60"
+
+[MOT-Q9/01.02.23R Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE*Opera 8.6*]
+Parent="Opera Mobile 8.60"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 8.50
+
+[Opera Mobile 8.50]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="8.50"
+MajorVer=8
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[MOT-ROKR E2/* R564_G_* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola ROKR*) * Opera 8.5*]
+Parent="Opera Mobile 8.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-ROKR E2/R564_G_12.00.3?P Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola ROKR* Opera 8.5*]
+Parent="Opera Mobile 8.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-ROKR E2/R564_G_12.00.4?P Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola ROKR* Opera 8.5*]
+Parent="Opera Mobile 8.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[motorazrV8/R601_G_80.56.13R_AP Mozilla/4.0 (*compatible*;*MSIE 6.0 Linux; Motorola V8*) * Opera 8.5*]
+Parent="Opera Mobile 8.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[motorazrV8/R601_G_80.55.0ARP Mozilla/4.0 (*compatible*;*MSIE 6.0 Linux; Motorola V8*) * Opera 8.5*]
+Parent="Opera Mobile 8.50"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 8.00
+
+[Opera Mobile 8.00]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="8.00"
+MajorVer=8
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[MOT-A1200/* LinuxOS/* Browser/Opera8.0*]
+Parent="Opera Mobile 8.00"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-A1200r/* LinuxOS/* Browser/Opera8.0*]
+Parent="Opera Mobile 8.00"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-A1200eam/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; A1200eam; *) * Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="SymbianOS"
+Win32="false"
+
+[MOT-MOTOROKR E6 Opera 8.0*]
+Parent="Opera Mobile 8.00"
+
+[MOT-A1200/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola A1200* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-E690/1.0/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola E690* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-MOTOROKR E6/1.0/* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; MOTOROKR E6* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-RAZRV3xx/* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-RAZRV3xx/96.* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-RAZRV3xxv/98.50.11R BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0;* Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-RAZRV6/9* BER2.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; 12093118) * Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+[ZTE-E700/(2006)4.0 (*compatible*;*MSIE 6.0*ZTE-E700/R52_G_0D.52.A1R * Opera 8.0*]
+Parent="Opera Mobile 8.00"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 7.60
+
+[Opera Mobile 7.60]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="7.60"
+MajorVer=7
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; KDDI-CA33) Opera 8.60*]
+Parent="Opera Mobile 7.60"
+Platform="WinMobile"
+Win32="false"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; KDDI-HI35) Opera 8.60*]
+Parent="Opera Mobile 7.60"
+Platform="WinMobile"
+Win32="false"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; KDDI-SH32) Opera 8.60*]
+Parent="Opera Mobile 7.60"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile 7.50
+
+[Opera Mobile 7.50]
+Parent="DefaultProperties"
+Comment="Opera Mobile 0.0"
+Browser="Opera Mobile"
+Version="7.50"
+MajorVer=7
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[MOT-A780/R52_G_0* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola*Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-A780/R532_G_0* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola*Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="Linux Smartphone OS"
+Win32="false"
+
+[MOT-A780/E680I_G_0* Opera 7.5*]
+Parent="Opera Mobile 7.50"
+Platform="SymbianOS"
+Win32="false"
+
+[MOT-A780/R52_G_0* Mozilla/4.0 (*compatible*;*MSIE 6.0; Motorola*Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-A780/R532_G_0* Mozilla/4.0 (*compatible*;*MSIE 6.0; Motorola*Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-E680i/E680I_G_0D.* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola E680i*Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-E680i/E680I_G_0D.C* Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola; *) Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="WinMobile"
+Win32="false"
+
+[MOT-E680i/E680I_G_0D.C3.A8P Mozilla/4.0 (*compatible*;*MSIE 6.0; Linux; Motorola; *) Profile/MIDP-2.0*]
+Parent="Opera Mobile 7.50"
+Platform="WinMobile"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile
+
+[Opera Mobile]
+Parent="DefaultProperties"
+Comment="Opera Mobile"
+Browser="Opera Mobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/?.*(*Windows CE*)*Opera?*]
+Parent="Opera Mobile"
+Platform="WinCE"
+
+[Opera/*(*Android*Opera Mobi*)*]
+Parent="Opera Mobile"
+Platform="Android"
+
+[Opera/*(*Microsoft Windows*Opera Mobi*)*]
+Parent="Opera Mobile"
+Platform="WinMobile"
+
+[Opera/*(*Symbian*Opera Mobi*)*]
+Parent="Opera Mobile"
+Platform="SymbianOS"
+
+[Opera/*(*SymbOS*Opera Mobi*)*]
+Parent="Opera Mobile"
+Platform="SymbianOS"
+
+[Opera/*(*Windows Mobile*Opera Mobi*)*]
+Parent="Opera Mobile"
+Platform="WinMobile"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Mobile Generic
+
+[Opera Mobile Generic]
+Parent="DefaultProperties"
+Comment="Opera Mobile Generic"
+Browser="Opera Mobile"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Mozilla/?.*(*Opera Mobile?*Windows CE*)*]
+Parent="Opera Mobile Generic"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 15.0
+
+[Opera 15.0]
+Parent="DefaultProperties"
+Comment="Opera 15.0"
+Browser="Opera"
+Version="15.0"
+MajorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/15.0*]
+Parent="Opera 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 16.0
+
+[Opera 16.0]
+Parent="DefaultProperties"
+Comment="Opera 16.0"
+Browser="Opera"
+Version="16.0"
+MajorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/16.0*]
+Parent="Opera 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 17.0
+
+[Opera 17.0]
+Parent="DefaultProperties"
+Comment="Opera 17.0"
+Browser="Opera"
+Version="17.0"
+MajorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/17.0*]
+Parent="Opera 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 18.0
+
+[Opera 18.0]
+Parent="DefaultProperties"
+Comment="Opera 18.0"
+Browser="Opera"
+Version="18.0"
+MajorVer=18
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/18.0*]
+Parent="Opera 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 19.0
+
+[Opera 19.0]
+Parent="DefaultProperties"
+Comment="Opera 19.0"
+Browser="Opera"
+Version="19.0"
+MajorVer=19
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/19.0*]
+Parent="Opera 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 20.0
+
+[Opera 20.0]
+Parent="DefaultProperties"
+Comment="Opera 20.0"
+Browser="Opera"
+Version="20.0"
+MajorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/20.0*]
+Parent="Opera 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 21.0
+
+[Opera 21.0]
+Parent="DefaultProperties"
+Comment="Opera 21.0"
+Browser="Opera"
+Version="21.0"
+MajorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/21.0*]
+Parent="Opera 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 22.0
+
+[Opera 22.0]
+Parent="DefaultProperties"
+Comment="Opera 22.0"
+Browser="Opera"
+Version="22.0"
+MajorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/22.0*]
+Parent="Opera 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 23.0
+
+[Opera 23.0]
+Parent="DefaultProperties"
+Comment="Opera 23.0"
+Browser="Opera"
+Version="23.0"
+MajorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/23.0*]
+Parent="Opera 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 24.0
+
+[Opera 24.0]
+Parent="DefaultProperties"
+Comment="Opera 24.0"
+Browser="Opera"
+Version="24.0"
+MajorVer=24
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/24.0*]
+Parent="Opera 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 25.0
+
+[Opera 25.0]
+Parent="DefaultProperties"
+Comment="Opera 25.0"
+Browser="Opera"
+Version="25.0"
+MajorVer=25
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/25.0*]
+Parent="Opera 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 26.0
+
+[Opera 26.0]
+Parent="DefaultProperties"
+Comment="Opera 26.0"
+Browser="Opera"
+Version="26.0"
+MajorVer=26
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/26.0*]
+Parent="Opera 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 27.0
+
+[Opera 27.0]
+Parent="DefaultProperties"
+Comment="Opera 27.0"
+Browser="Opera"
+Version="27.0"
+MajorVer=27
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*SunOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/*OPR/27.0*]
+Parent="Opera 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu
+
+[Baidu]
+Parent="DefaultProperties"
+Comment="Baidu"
+Browser="Baidu"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Baiduspider-image*]
+Parent="Baidu"
+Browser="Baidu Image Search"
+
+[Baiduspider*]
+Parent="Baidu"
+Browser="BaiDu"
+
+[baidu bot*]
+Parent="Baidu"
+Browser="BaiDu"
+
+[*Baiduspider*]
+Parent="Baidu"
+Browser="BaiDu"
+
+[*Baiduspider-ads*]
+Parent="Baidu"
+Browser="Baidu Business Search"
+
+[*Baiduspider-cpro*]
+Parent="Baidu"
+Browser="Baidu Union"
+
+[*Baiduspider-favo*]
+Parent="Baidu"
+Browser="Baidu bookmark"
+
+[*Baiduspider-image*]
+Parent="Baidu"
+Browser="Baidu Image Search"
+
+[*Baiduspider-news*]
+Parent="Baidu"
+Browser="Baidu News search"
+
+[*Baiduspider-video*]
+Parent="Baidu"
+Browser="Baidu Video search"
+
+[AC-BaiduBot/*]
+Parent="Baidu"
+Browser="AC-BaiduBot"
+
+[BaiduImageSpider*]
+Parent="Baidu"
+Browser="BaiduImageSpider"
+
+[Mozilla/5.0 (compatible;*Baiduspider/2.0;*+http://www.baidu.com/search/spider.html)]
+Parent="Baidu"
+Browser="Baiduspider"
+Version="2.0"
+MajorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.10
+
+[Opera 12.10]
+Parent="DefaultProperties"
+Comment="Opera 12.10"
+Browser="Opera"
+Version="12.10"
+MajorVer=12
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.10*FreeBSD*)*]
+Parent="Opera 12.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Linux*x86_64*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Linux i686*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Linux*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_4*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.4*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_5*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.5*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_6*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.6*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_7*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.7*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_8*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.8*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_9*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.9*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10_10*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X 10.10*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac OS X*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Mac_PowerPC*)*]
+Parent="Opera 12.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*SunOS*)*]
+Parent="Opera 12.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.10*Windows CE*)*]
+Parent="Opera 12.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 5.0*)*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.10*Windows 2000*)*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.10*Win 9x 4.90*)*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.10*Windows ME*)*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.10*Windows 95*)*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.10*Windows 98*)*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 4.0*)*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.10*Windows XP*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 5.1*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 5.2*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.0*)*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.1*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.2*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.10*Windows NT 6.3*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.10*(*FreeBSD*)*]
+Parent="Opera 12.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.10*(*Linux*x86_64*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.10*(*Linux i686*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.10*(*Linux*)*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_4*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.4*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_5*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.5*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_6*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.6*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_7*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.7*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_8*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.8*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_9*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.9*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10_10*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X 10.10*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.10*(*Mac OS X*)*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.10*(*Mac_PowerPC*)*]
+Parent="Opera 12.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.10*(*SunOS*)*]
+Parent="Opera 12.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.10*(*Windows CE*)*]
+Parent="Opera 12.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.10*(*Windows NT 5.0*)*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.10*(*Windows 2000*)*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.10*(*Win 9x 4.90*)*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.10*(*Windows ME*)*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.10*(*Windows 95*)*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.10*(*Windows 98*)*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.10*(*Windows NT 4.0*)*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.10*(*Windows XP*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.10*(*Windows NT 5.1*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.10*(*Windows NT 5.2*)*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.10*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.0*)*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.10*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.1*)*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.10*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.2*)*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.10*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.10*(*Windows NT 6.3*)*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.10*]
+Parent="Opera 12.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.11
+
+[Opera 12.11]
+Parent="DefaultProperties"
+Comment="Opera 12.11"
+Browser="Opera"
+Version="12.11"
+MajorVer=12
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.11*FreeBSD*)*]
+Parent="Opera 12.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Linux*x86_64*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Linux i686*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Linux*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_4*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.4*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_5*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.5*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_6*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.6*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_7*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.7*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_8*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.8*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_9*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.9*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10_10*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X 10.10*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac OS X*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Mac_PowerPC*)*]
+Parent="Opera 12.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*SunOS*)*]
+Parent="Opera 12.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.11*Windows CE*)*]
+Parent="Opera 12.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 5.0*)*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.11*Windows 2000*)*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.11*Win 9x 4.90*)*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.11*Windows ME*)*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.11*Windows 95*)*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.11*Windows 98*)*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 4.0*)*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.11*Windows XP*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 5.1*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 5.2*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.0*)*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.1*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.2*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.11*Windows NT 6.3*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.11*(*FreeBSD*)*]
+Parent="Opera 12.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.11*(*Linux*x86_64*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.11*(*Linux i686*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.11*(*Linux*)*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_4*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.4*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_5*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.5*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_6*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.6*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_7*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.7*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_8*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.8*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_9*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.9*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10_10*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X 10.10*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.11*(*Mac OS X*)*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.11*(*Mac_PowerPC*)*]
+Parent="Opera 12.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.11*(*SunOS*)*]
+Parent="Opera 12.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.11*(*Windows CE*)*]
+Parent="Opera 12.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.11*(*Windows NT 5.0*)*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.11*(*Windows 2000*)*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.11*(*Win 9x 4.90*)*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.11*(*Windows ME*)*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.11*(*Windows 95*)*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.11*(*Windows 98*)*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.11*(*Windows NT 4.0*)*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.11*(*Windows XP*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.11*(*Windows NT 5.1*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.11*(*Windows NT 5.2*)*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.11*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.0*)*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.11*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.1*)*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.11*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.2*)*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.11*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.11*(*Windows NT 6.3*)*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.11*]
+Parent="Opera 12.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.12
+
+[Opera 12.12]
+Parent="DefaultProperties"
+Comment="Opera 12.12"
+Browser="Opera"
+Version="12.12"
+MajorVer=12
+MinorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.12*FreeBSD*)*]
+Parent="Opera 12.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Linux*x86_64*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Linux i686*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Linux*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_4*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.4*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_5*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.5*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_6*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.6*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_7*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.7*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_8*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.8*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_9*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.9*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10_10*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X 10.10*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac OS X*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Mac_PowerPC*)*]
+Parent="Opera 12.12"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*SunOS*)*]
+Parent="Opera 12.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.12*Windows CE*)*]
+Parent="Opera 12.12"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 5.0*)*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.12*Windows 2000*)*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.12*Win 9x 4.90*)*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.12*Windows ME*)*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.12*Windows 95*)*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.12*Windows 98*)*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 4.0*)*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.12*Windows XP*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 5.1*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 5.2*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.0*)*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.1*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.2*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.12*Windows NT 6.3*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.12*(*FreeBSD*)*]
+Parent="Opera 12.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.12*(*Linux*x86_64*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.12*(*Linux i686*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.12*(*Linux*)*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_4*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.4*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_5*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.5*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_6*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.6*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_7*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.7*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_8*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.8*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_9*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.9*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10_10*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X 10.10*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.12*(*Mac OS X*)*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.12*(*Mac_PowerPC*)*]
+Parent="Opera 12.12"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.12*(*SunOS*)*]
+Parent="Opera 12.12"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.12*(*Windows CE*)*]
+Parent="Opera 12.12"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.12*(*Windows NT 5.0*)*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.12*(*Windows 2000*)*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.12*(*Win 9x 4.90*)*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.12*(*Windows ME*)*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.12*(*Windows 95*)*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.12*(*Windows 98*)*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.12*(*Windows NT 4.0*)*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.12*(*Windows XP*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.12*(*Windows NT 5.1*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.12*(*Windows NT 5.2*)*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.12*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.0*)*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.12*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.1*)*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.12*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.2*)*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.12*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.12*(*Windows NT 6.3*)*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.12*]
+Parent="Opera 12.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.13
+
+[Opera 12.13]
+Parent="DefaultProperties"
+Comment="Opera 12.13"
+Browser="Opera"
+Version="12.13"
+MajorVer=12
+MinorVer=13
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.13*FreeBSD*)*]
+Parent="Opera 12.13"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Linux*x86_64*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Linux i686*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Linux*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_4*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.4*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_5*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.5*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_6*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.6*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_7*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.7*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_8*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.8*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_9*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.9*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10_10*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X 10.10*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac OS X*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Mac_PowerPC*)*]
+Parent="Opera 12.13"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*SunOS*)*]
+Parent="Opera 12.13"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.13*Windows CE*)*]
+Parent="Opera 12.13"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 5.0*)*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.13*Windows 2000*)*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.13*Win 9x 4.90*)*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.13*Windows ME*)*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.13*Windows 95*)*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.13*Windows 98*)*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 4.0*)*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.13*Windows XP*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 5.1*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 5.2*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.0*)*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.1*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.2*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.13*Windows NT 6.3*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.13*(*FreeBSD*)*]
+Parent="Opera 12.13"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.13*(*Linux*x86_64*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.13*(*Linux i686*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.13*(*Linux*)*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_4*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.4*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_5*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.5*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_6*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.6*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_7*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.7*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_8*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.8*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_9*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.9*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10_10*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X 10.10*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.13*(*Mac OS X*)*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.13*(*Mac_PowerPC*)*]
+Parent="Opera 12.13"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.13*(*SunOS*)*]
+Parent="Opera 12.13"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.13*(*Windows CE*)*]
+Parent="Opera 12.13"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.13*(*Windows NT 5.0*)*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.13*(*Windows 2000*)*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.13*(*Win 9x 4.90*)*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.13*(*Windows ME*)*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.13*(*Windows 95*)*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.13*(*Windows 98*)*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.13*(*Windows NT 4.0*)*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.13*(*Windows XP*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.13*(*Windows NT 5.1*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.13*(*Windows NT 5.2*)*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.13*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.0*)*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.13*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.1*)*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.13*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.2*)*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.13*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.13*(*Windows NT 6.3*)*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.13*]
+Parent="Opera 12.13"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.14
+
+[Opera 12.14]
+Parent="DefaultProperties"
+Comment="Opera 12.14"
+Browser="Opera"
+Version="12.14"
+MajorVer=12
+MinorVer=14
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.14*FreeBSD*)*]
+Parent="Opera 12.14"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Linux*x86_64*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Linux i686*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Linux*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_4*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.4*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_5*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.5*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_6*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.6*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_7*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.7*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_8*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.8*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_9*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.9*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10_10*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X 10.10*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac OS X*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Mac_PowerPC*)*]
+Parent="Opera 12.14"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*SunOS*)*]
+Parent="Opera 12.14"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.14*Windows CE*)*]
+Parent="Opera 12.14"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 5.0*)*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.14*Windows 2000*)*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.14*Win 9x 4.90*)*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.14*Windows ME*)*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.14*Windows 95*)*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.14*Windows 98*)*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 4.0*)*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.14*Windows XP*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 5.1*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 5.2*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.0*)*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.1*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.2*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.14*Windows NT 6.3*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.14*(*FreeBSD*)*]
+Parent="Opera 12.14"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.14*(*Linux*x86_64*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.14*(*Linux i686*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.14*(*Linux*)*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_4*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.4*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_5*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.5*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_6*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.6*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_7*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.7*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_8*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.8*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_9*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.9*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10_10*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X 10.10*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.14*(*Mac OS X*)*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.14*(*Mac_PowerPC*)*]
+Parent="Opera 12.14"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.14*(*SunOS*)*]
+Parent="Opera 12.14"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.14*(*Windows CE*)*]
+Parent="Opera 12.14"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.14*(*Windows NT 5.0*)*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.14*(*Windows 2000*)*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.14*(*Win 9x 4.90*)*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.14*(*Windows ME*)*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.14*(*Windows 95*)*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.14*(*Windows 98*)*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.14*(*Windows NT 4.0*)*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.14*(*Windows XP*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.14*(*Windows NT 5.1*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.14*(*Windows NT 5.2*)*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.14*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.0*)*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.14*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.1*)*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.14*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.2*)*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.14*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.14*(*Windows NT 6.3*)*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.14*]
+Parent="Opera 12.14"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.15
+
+[Opera 12.15]
+Parent="DefaultProperties"
+Comment="Opera 12.15"
+Browser="Opera"
+Version="12.15"
+MajorVer=12
+MinorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.15*FreeBSD*)*]
+Parent="Opera 12.15"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Linux*x86_64*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Linux i686*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Linux*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_4*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.4*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_5*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.5*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_6*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.6*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_7*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.7*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_8*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.8*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_9*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.9*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10_10*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X 10.10*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac OS X*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Mac_PowerPC*)*]
+Parent="Opera 12.15"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*SunOS*)*]
+Parent="Opera 12.15"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.15*Windows CE*)*]
+Parent="Opera 12.15"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 5.0*)*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.15*Windows 2000*)*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.15*Win 9x 4.90*)*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.15*Windows ME*)*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.15*Windows 95*)*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.15*Windows 98*)*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 4.0*)*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.15*Windows XP*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 5.1*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 5.2*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.0*)*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.1*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.2*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.15*Windows NT 6.3*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.15*(*FreeBSD*)*]
+Parent="Opera 12.15"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.15*(*Linux*x86_64*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.15*(*Linux i686*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.15*(*Linux*)*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_4*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.4*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_5*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.5*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_6*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.6*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_7*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.7*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_8*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.8*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_9*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.9*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10_10*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X 10.10*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.15*(*Mac OS X*)*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.15*(*Mac_PowerPC*)*]
+Parent="Opera 12.15"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.15*(*SunOS*)*]
+Parent="Opera 12.15"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.15*(*Windows CE*)*]
+Parent="Opera 12.15"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.15*(*Windows NT 5.0*)*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.15*(*Windows 2000*)*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.15*(*Win 9x 4.90*)*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.15*(*Windows ME*)*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.15*(*Windows 95*)*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.15*(*Windows 98*)*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.15*(*Windows NT 4.0*)*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.15*(*Windows XP*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.15*(*Windows NT 5.1*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.15*(*Windows NT 5.2*)*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.15*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.0*)*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.15*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.1*)*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.15*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.2*)*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.15*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.15*(*Windows NT 6.3*)*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.15*]
+Parent="Opera 12.15"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.16
+
+[Opera 12.16]
+Parent="DefaultProperties"
+Comment="Opera 12.16"
+Browser="Opera"
+Version="12.16"
+MajorVer=12
+MinorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.16*FreeBSD*)*]
+Parent="Opera 12.16"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Linux*x86_64*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Linux i686*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Linux*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_4*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.4*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_5*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.5*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_6*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.6*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_7*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.7*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_8*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.8*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_9*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.9*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10_10*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X 10.10*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac OS X*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Mac_PowerPC*)*]
+Parent="Opera 12.16"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*SunOS*)*]
+Parent="Opera 12.16"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.16*Windows CE*)*]
+Parent="Opera 12.16"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 5.0*)*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.16*Windows 2000*)*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.16*Win 9x 4.90*)*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.16*Windows ME*)*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.16*Windows 95*)*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.16*Windows 98*)*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 4.0*)*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.16*Windows XP*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 5.1*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 5.2*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.0*)*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.1*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.2*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.16*Windows NT 6.3*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.16*(*FreeBSD*)*]
+Parent="Opera 12.16"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.16*(*Linux*x86_64*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.16*(*Linux i686*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.16*(*Linux*)*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_4*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.4*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_5*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.5*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_6*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.6*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_7*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.7*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_8*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.8*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_9*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.9*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10_10*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X 10.10*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.16*(*Mac OS X*)*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.16*(*Mac_PowerPC*)*]
+Parent="Opera 12.16"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.16*(*SunOS*)*]
+Parent="Opera 12.16"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.16*(*Windows CE*)*]
+Parent="Opera 12.16"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.16*(*Windows NT 5.0*)*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.16*(*Windows 2000*)*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.16*(*Win 9x 4.90*)*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.16*(*Windows ME*)*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.16*(*Windows 95*)*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.16*(*Windows 98*)*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.16*(*Windows NT 4.0*)*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.16*(*Windows XP*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.16*(*Windows NT 5.1*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.16*(*Windows NT 5.2*)*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.16*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.0*)*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.16*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.1*)*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.16*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.2*)*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.16*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.16*(*Windows NT 6.3*)*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.16*]
+Parent="Opera 12.16"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.17
+
+[Opera 12.17]
+Parent="DefaultProperties"
+Comment="Opera 12.17"
+Browser="Opera"
+Version="12.17"
+MajorVer=12
+MinorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.17*FreeBSD*)*]
+Parent="Opera 12.17"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Linux*x86_64*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Linux i686*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Linux*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_4*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.4*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_5*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.5*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_6*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.6*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_7*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.7*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_8*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.8*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_9*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.9*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10_10*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X 10.10*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac OS X*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Mac_PowerPC*)*]
+Parent="Opera 12.17"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*SunOS*)*]
+Parent="Opera 12.17"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.17*Windows CE*)*]
+Parent="Opera 12.17"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 5.0*)*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.17*Windows 2000*)*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.17*Win 9x 4.90*)*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.17*Windows ME*)*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.17*Windows 95*)*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.17*Windows 98*)*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 4.0*)*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.17*Windows XP*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 5.1*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 5.2*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.0*)*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.1*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.2*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.17*Windows NT 6.3*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.17*(*FreeBSD*)*]
+Parent="Opera 12.17"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.17*(*Linux*x86_64*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.17*(*Linux i686*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.17*(*Linux*)*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_4*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.4*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_5*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.5*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_6*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.6*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_7*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.7*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_8*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.8*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_9*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.9*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10_10*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X 10.10*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.17*(*Mac OS X*)*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.17*(*Mac_PowerPC*)*]
+Parent="Opera 12.17"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.17*(*SunOS*)*]
+Parent="Opera 12.17"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.17*(*Windows CE*)*]
+Parent="Opera 12.17"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.17*(*Windows NT 5.0*)*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.17*(*Windows 2000*)*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.17*(*Win 9x 4.90*)*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.17*(*Windows ME*)*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.17*(*Windows 95*)*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.17*(*Windows 98*)*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.17*(*Windows NT 4.0*)*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.17*(*Windows XP*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.17*(*Windows NT 5.1*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.17*(*Windows NT 5.2*)*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.17*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.0*)*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.17*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.1*)*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.17*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.2*)*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.17*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.17*(*Windows NT 6.3*)*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.17*]
+Parent="Opera 12.17"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.50
+
+[Opera 12.50]
+Parent="DefaultProperties"
+Comment="Opera 12.50"
+Browser="Opera"
+Version="12.50"
+MajorVer=12
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*Win64? x64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*Win64? x64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.50*FreeBSD*)*]
+Parent="Opera 12.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Linux*x86_64*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Linux i686*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Linux*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_4*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.4*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_5*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.5*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_6*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.6*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_7*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.7*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_8*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.8*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_9*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.9*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10_10*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X 10.10*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac OS X*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Mac_PowerPC*)*]
+Parent="Opera 12.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*SunOS*)*]
+Parent="Opera 12.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.50*Windows CE*)*]
+Parent="Opera 12.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 5.0*)*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.50*Windows 2000*)*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.50*Win 9x 4.90*)*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.50*Windows ME*)*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.50*Windows 95*)*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.50*Windows 98*)*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 4.0*)*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.50*Windows XP*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 5.1*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 5.2*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.0*)*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.1*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.2*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.50*Windows NT 6.3*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.50*(*FreeBSD*)*]
+Parent="Opera 12.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.50*(*Linux*x86_64*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.50*(*Linux i686*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.50*(*Linux*)*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_4*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.4*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_5*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.5*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_6*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.6*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_7*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.7*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_8*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.8*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_9*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.9*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10_10*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X 10.10*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.50*(*Mac OS X*)*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.50*(*Mac_PowerPC*)*]
+Parent="Opera 12.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.50*(*SunOS*)*]
+Parent="Opera 12.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/12.50*(*Windows CE*)*]
+Parent="Opera 12.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/12.50*(*Windows NT 5.0*)*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.50*(*Windows 2000*)*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.50*(*Win 9x 4.90*)*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.50*(*Windows ME*)*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.50*(*Windows 95*)*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.50*(*Windows 98*)*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.50*(*Windows NT 4.0*)*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.50*(*Windows XP*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.50*(*Windows NT 5.1*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.50*(*Windows NT 5.2*)*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.50*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.0*)*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.50*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.1*)*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.50*(*Windows NT 6.2*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.2*)*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.50*(*Windows NT 6.3*Win64? x64*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.50*(*Windows NT 6.3*)*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*Win64? x64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*Win64? x64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.50*]
+Parent="Opera 12.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.00
+
+[Opera 12.00]
+Parent="DefaultProperties"
+Comment="Opera 12.00"
+Browser="Opera"
+Version="12.00"
+MajorVer=12
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.00*FreeBSD*)*]
+Parent="Opera 12.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Linux*x86_64*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Linux i686*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Linux*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10_6*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10.6*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10_7*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10.7*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10_8*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10.8*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10_9*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10.9*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10_10*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X 10.10*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Mac OS X*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 5.0*)*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.00*Windows 2000*)*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.00*Win 9x 4.90*)*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.00*Windows ME*)*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.00*Windows 95*)*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.00*Windows 98*)*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 4.0*)*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.00*Windows XP*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 5.1*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 5.2*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.0*)*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.1*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.2*)*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.00*Windows NT 6.3*)*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.00*(*FreeBSD*)*]
+Parent="Opera 12.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.00*(*Linux*x86_64*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.00*(*Linux i686*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.00*(*Linux*)*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10_6*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10.6*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10_7*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10.7*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10_8*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10.8*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10_9*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10.9*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10_10*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X 10.10*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.00*(*Mac OS X*)*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.00*(*Windows NT 5.0*)*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.00*(*Windows 2000*)*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.00*(*Win 9x 4.90*)*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.00*(*Windows ME*)*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.00*(*Windows 95*)*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.00*(*Windows 98*)*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.00*(*Windows NT 4.0*)*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.00*(*Windows XP*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.00*(*Windows NT 5.1*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.00*(*Windows NT 5.2*)*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.00*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.00*(*Windows NT 6.0*)*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.00*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.00*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.00*(*Windows NT 6.1*)*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.00*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.00*(*Windows NT 6.2*)*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.00*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.00*(*Windows NT 6.3*)*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.00*]
+Parent="Opera 12.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.01
+
+[Opera 12.01]
+Parent="DefaultProperties"
+Comment="Opera 12.01"
+Browser="Opera"
+Version="12.01"
+MajorVer=12
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.01*FreeBSD*)*]
+Parent="Opera 12.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Linux*x86_64*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Linux i686*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Linux*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10_6*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10.6*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10_7*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10.7*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10_8*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10.8*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10_9*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10.9*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10_10*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X 10.10*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Mac OS X*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 5.0*)*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.01*Windows 2000*)*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.01*Win 9x 4.90*)*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.01*Windows ME*)*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.01*Windows 95*)*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.01*Windows 98*)*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 4.0*)*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.01*Windows XP*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 5.1*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 5.2*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.0*)*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.1*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.2*)*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.01*Windows NT 6.3*)*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.01*(*FreeBSD*)*]
+Parent="Opera 12.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.01*(*Linux*x86_64*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.01*(*Linux i686*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.01*(*Linux*)*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10_6*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10.6*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10_7*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10.7*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10_8*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10.8*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10_9*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10.9*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10_10*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X 10.10*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.01*(*Mac OS X*)*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.01*(*Windows NT 5.0*)*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.01*(*Windows 2000*)*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.01*(*Win 9x 4.90*)*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.01*(*Windows ME*)*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.01*(*Windows 95*)*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.01*(*Windows 98*)*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.01*(*Windows NT 4.0*)*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.01*(*Windows XP*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.01*(*Windows NT 5.1*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.01*(*Windows NT 5.2*)*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.01*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.01*(*Windows NT 6.0*)*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.01*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.01*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.01*(*Windows NT 6.1*)*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.01*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.01*(*Windows NT 6.2*)*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.01*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.01*(*Windows NT 6.3*)*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.01*]
+Parent="Opera 12.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 12.02
+
+[Opera 12.02]
+Parent="DefaultProperties"
+Comment="Opera 12.02"
+Browser="Opera"
+Version="12.02"
+MajorVer=12
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*x86_64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux i686*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*Win64? x64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*WOW64*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?12.02*FreeBSD*)*]
+Parent="Opera 12.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Linux*x86_64*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Linux i686*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Linux*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10_6*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10.6*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10_7*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10.7*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10_8*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10.8*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10_9*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10.9*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10_10*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X 10.10*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Mac OS X*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 5.0*)*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.02*Windows 2000*)*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?12.02*Win 9x 4.90*)*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.02*Windows ME*)*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?12.02*Windows 95*)*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?12.02*Windows 98*)*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 4.0*)*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?12.02*Windows XP*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 5.1*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 5.2*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.0*)*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.1*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.2*)*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?12.02*Windows NT 6.3*)*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/12.02*(*FreeBSD*)*]
+Parent="Opera 12.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/12.02*(*Linux*x86_64*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.02*(*Linux i686*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.02*(*Linux*)*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10_6*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10.6*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10_7*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10.7*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10_8*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10.8*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10_9*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10.9*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10_10*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X 10.10*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/12.02*(*Mac OS X*)*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/12.02*(*Windows NT 5.0*)*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.02*(*Windows 2000*)*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/12.02*(*Win 9x 4.90*)*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.02*(*Windows ME*)*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/12.02*(*Windows 95*)*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/12.02*(*Windows 98*)*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/12.02*(*Windows NT 4.0*)*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/12.02*(*Windows XP*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.02*(*Windows NT 5.1*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/12.02*(*Windows NT 5.2*)*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/12.02*(*Windows NT 6.0*WOW64*)*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/12.02*(*Windows NT 6.0*)*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/12.02*(*Windows NT 6.1*Win64? x64*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.02*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/12.02*(*Windows NT 6.1*)*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/12.02*(*Windows NT 6.2*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/12.02*(*Windows NT 6.2*)*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/12.02*(*Windows NT 6.3*WOW64*)*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/12.02*(*Windows NT 6.3*)*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*x86_64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux i686*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*WOW64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*Win64? x64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*WOW64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*WOW64*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/12.02*]
+Parent="Opera 12.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.60
+
+[Opera 11.60]
+Parent="DefaultProperties"
+Comment="Opera 11.60"
+Browser="Opera"
+Version="11.60"
+MajorVer=11
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.60*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.60*FreeBSD*)*]
+Parent="Opera 11.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Linux*)*]
+Parent="Opera 11.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_4*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.4*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_5*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.5*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_6*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.6*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_7*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.7*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_8*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.8*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_9*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.9*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10_10*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X 10.10*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac OS X*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Mac_PowerPC*)*]
+Parent="Opera 11.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 5.0*)*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.60*Windows 2000*)*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.60*Win 9x 4.90*)*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.60*Windows ME*)*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.60*Windows 95*)*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.60*Windows 98*)*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 4.0*)*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.60*Windows XP*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 5.1*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 5.2*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 6.0*)*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 6.1*)*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 6.2*)*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.60*Windows NT 6.3*)*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.60*(*FreeBSD*)*]
+Parent="Opera 11.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.60*(*Linux*)*]
+Parent="Opera 11.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_4*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.4*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_5*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.5*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_6*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.6*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_7*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.7*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_8*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.8*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_9*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.9*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10_10*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X 10.10*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.60*(*Mac OS X*)*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.60*(*Mac_PowerPC*)*]
+Parent="Opera 11.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.60*(*Windows NT 5.0*)*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.60*(*Windows 2000*)*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.60*(*Win 9x 4.90*)*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.60*(*Windows ME*)*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.60*(*Windows 95*)*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.60*(*Windows 98*)*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.60*(*Windows NT 4.0*)*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.60*(*Windows XP*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.60*(*Windows NT 5.1*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.60*(*Windows NT 5.2*)*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.60*(*Windows NT 6.0*)*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.60*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.60*(*Windows NT 6.1*)*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.60*(*Windows NT 6.2*)*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.60*(*Windows NT 6.3*)*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.60*]
+Parent="Opera 11.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.61
+
+[Opera 11.61]
+Parent="DefaultProperties"
+Comment="Opera 11.61"
+Browser="Opera"
+Version="11.61"
+MajorVer=11
+MinorVer=61
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.61*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.61*FreeBSD*)*]
+Parent="Opera 11.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Linux*)*]
+Parent="Opera 11.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_4*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.4*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_5*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.5*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_6*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.6*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_7*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.7*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_8*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.8*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_9*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.9*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10_10*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X 10.10*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac OS X*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Mac_PowerPC*)*]
+Parent="Opera 11.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 5.0*)*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.61*Windows 2000*)*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.61*Win 9x 4.90*)*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.61*Windows ME*)*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.61*Windows 95*)*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.61*Windows 98*)*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 4.0*)*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.61*Windows XP*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 5.1*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 5.2*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 6.0*)*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 6.1*)*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 6.2*)*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.61*Windows NT 6.3*)*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.61*(*FreeBSD*)*]
+Parent="Opera 11.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.61*(*Linux*)*]
+Parent="Opera 11.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_4*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.4*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_5*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.5*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_6*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.6*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_7*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.7*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_8*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.8*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_9*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.9*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10_10*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X 10.10*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.61*(*Mac OS X*)*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.61*(*Mac_PowerPC*)*]
+Parent="Opera 11.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.61*(*Windows NT 5.0*)*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.61*(*Windows 2000*)*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.61*(*Win 9x 4.90*)*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.61*(*Windows ME*)*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.61*(*Windows 95*)*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.61*(*Windows 98*)*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.61*(*Windows NT 4.0*)*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.61*(*Windows XP*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.61*(*Windows NT 5.1*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.61*(*Windows NT 5.2*)*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.61*(*Windows NT 6.0*)*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.61*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.61*(*Windows NT 6.1*)*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.61*(*Windows NT 6.2*)*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.61*(*Windows NT 6.3*)*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.61*]
+Parent="Opera 11.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.62
+
+[Opera 11.62]
+Parent="DefaultProperties"
+Comment="Opera 11.62"
+Browser="Opera"
+Version="11.62"
+MajorVer=11
+MinorVer=62
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.62*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.62*FreeBSD*)*]
+Parent="Opera 11.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Linux*)*]
+Parent="Opera 11.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_4*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.4*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_5*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.5*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_6*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.6*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_7*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.7*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_8*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.8*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_9*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.9*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10_10*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X 10.10*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac OS X*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Mac_PowerPC*)*]
+Parent="Opera 11.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 5.0*)*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.62*Windows 2000*)*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.62*Win 9x 4.90*)*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.62*Windows ME*)*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.62*Windows 95*)*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.62*Windows 98*)*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 4.0*)*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.62*Windows XP*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 5.1*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 5.2*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 6.0*)*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 6.1*)*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 6.2*)*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.62*Windows NT 6.3*)*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.62*(*FreeBSD*)*]
+Parent="Opera 11.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.62*(*Linux*)*]
+Parent="Opera 11.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_4*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.4*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_5*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.5*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_6*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.6*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_7*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.7*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_8*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.8*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_9*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.9*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10_10*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X 10.10*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.62*(*Mac OS X*)*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.62*(*Mac_PowerPC*)*]
+Parent="Opera 11.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.62*(*Windows NT 5.0*)*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.62*(*Windows 2000*)*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.62*(*Win 9x 4.90*)*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.62*(*Windows ME*)*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.62*(*Windows 95*)*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.62*(*Windows 98*)*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.62*(*Windows NT 4.0*)*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.62*(*Windows XP*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.62*(*Windows NT 5.1*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.62*(*Windows NT 5.2*)*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.62*(*Windows NT 6.0*)*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.62*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.62*(*Windows NT 6.1*)*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.62*(*Windows NT 6.2*)*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.62*(*Windows NT 6.3*)*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.62*]
+Parent="Opera 11.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.63
+
+[Opera 11.63]
+Parent="DefaultProperties"
+Comment="Opera 11.63"
+Browser="Opera"
+Version="11.63"
+MajorVer=11
+MinorVer=63
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.63*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.63*FreeBSD*)*]
+Parent="Opera 11.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Linux*)*]
+Parent="Opera 11.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_4*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.4*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_5*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.5*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_6*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.6*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_7*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.7*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_8*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.8*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_9*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.9*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10_10*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X 10.10*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac OS X*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Mac_PowerPC*)*]
+Parent="Opera 11.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 5.0*)*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.63*Windows 2000*)*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.63*Win 9x 4.90*)*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.63*Windows ME*)*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.63*Windows 95*)*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.63*Windows 98*)*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 4.0*)*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.63*Windows XP*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 5.1*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 5.2*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 6.0*)*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 6.1*)*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 6.2*)*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.63*Windows NT 6.3*)*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.63*(*FreeBSD*)*]
+Parent="Opera 11.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.63*(*Linux*)*]
+Parent="Opera 11.63"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_4*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.4*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_5*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.5*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_6*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.6*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_7*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.7*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_8*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.8*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_9*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.9*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10_10*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X 10.10*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.63*(*Mac OS X*)*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.63*(*Mac_PowerPC*)*]
+Parent="Opera 11.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.63*(*Windows NT 5.0*)*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.63*(*Windows 2000*)*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.63*(*Win 9x 4.90*)*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.63*(*Windows ME*)*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.63*(*Windows 95*)*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.63*(*Windows 98*)*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.63*(*Windows NT 4.0*)*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.63*(*Windows XP*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.63*(*Windows NT 5.1*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.63*(*Windows NT 5.2*)*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.63*(*Windows NT 6.0*)*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.63*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.63*(*Windows NT 6.1*)*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.63*(*Windows NT 6.2*)*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.63*(*Windows NT 6.3*)*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.63*]
+Parent="Opera 11.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.64
+
+[Opera 11.64]
+Parent="DefaultProperties"
+Comment="Opera 11.64"
+Browser="Opera"
+Version="11.64"
+MajorVer=11
+MinorVer=64
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.64*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.64*FreeBSD*)*]
+Parent="Opera 11.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Linux*)*]
+Parent="Opera 11.64"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_4*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.4*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_5*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.5*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_6*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.6*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_7*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.7*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_8*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.8*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_9*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.9*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10_10*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X 10.10*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac OS X*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Mac_PowerPC*)*]
+Parent="Opera 11.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 5.0*)*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.64*Windows 2000*)*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.64*Win 9x 4.90*)*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.64*Windows ME*)*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.64*Windows 95*)*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.64*Windows 98*)*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 4.0*)*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.64*Windows XP*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 5.1*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 5.2*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 6.0*)*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 6.1*)*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 6.2*)*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.64*Windows NT 6.3*)*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.64*(*FreeBSD*)*]
+Parent="Opera 11.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.64*(*Linux*)*]
+Parent="Opera 11.64"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_4*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.4*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_5*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.5*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_6*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.6*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_7*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.7*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_8*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.8*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_9*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.9*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10_10*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X 10.10*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.64*(*Mac OS X*)*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.64*(*Mac_PowerPC*)*]
+Parent="Opera 11.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.64*(*Windows NT 5.0*)*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.64*(*Windows 2000*)*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.64*(*Win 9x 4.90*)*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.64*(*Windows ME*)*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.64*(*Windows 95*)*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.64*(*Windows 98*)*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.64*(*Windows NT 4.0*)*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.64*(*Windows XP*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.64*(*Windows NT 5.1*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.64*(*Windows NT 5.2*)*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.64*(*Windows NT 6.0*)*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.64*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.64*(*Windows NT 6.1*)*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.64*(*Windows NT 6.2*)*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.64*(*Windows NT 6.3*)*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.64*]
+Parent="Opera 11.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.70
+
+[Opera 11.70]
+Parent="DefaultProperties"
+Comment="Opera 11.70"
+Browser="Opera"
+Version="11.70"
+MajorVer=11
+MinorVer=70
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*WOW64*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*WOW64*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.70*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.70*FreeBSD*)*]
+Parent="Opera 11.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Linux*)*]
+Parent="Opera 11.70"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_4*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.4*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_5*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.5*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_6*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.6*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_7*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.7*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_8*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.8*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_9*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.9*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10_10*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X 10.10*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac OS X*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Mac_PowerPC*)*]
+Parent="Opera 11.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 5.0*)*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.70*Windows 2000*)*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.70*Win 9x 4.90*)*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.70*Windows ME*)*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.70*Windows 95*)*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.70*Windows 98*)*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 4.0*)*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.70*Windows XP*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 5.1*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 5.2*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 6.0*)*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 6.1*)*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 6.2*)*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.70*Windows NT 6.3*)*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.70*(*FreeBSD*)*]
+Parent="Opera 11.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.70*(*Linux*)*]
+Parent="Opera 11.70"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_4*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.4*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_5*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.5*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_6*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.6*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_7*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.7*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_8*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.8*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_9*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.9*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10_10*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X 10.10*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.70*(*Mac OS X*)*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.70*(*Mac_PowerPC*)*]
+Parent="Opera 11.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.70*(*Windows NT 5.0*)*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.70*(*Windows 2000*)*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.70*(*Win 9x 4.90*)*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.70*(*Windows ME*)*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.70*(*Windows 95*)*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.70*(*Windows 98*)*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.70*(*Windows NT 4.0*)*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.70*(*Windows XP*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.70*(*Windows NT 5.1*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.70*(*Windows NT 5.2*)*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.70*(*Windows NT 6.0*)*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.70*(*Windows NT 6.1*WOW64*)*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/11.70*(*Windows NT 6.1*)*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.70*(*Windows NT 6.2*)*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.70*(*Windows NT 6.3*)*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*WOW64*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.70*]
+Parent="Opera 11.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.50
+
+[Opera 11.50]
+Parent="DefaultProperties"
+Comment="Opera 11.50"
+Browser="Opera"
+Version="11.50"
+MajorVer=11
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.50*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.50*FreeBSD*)*]
+Parent="Opera 11.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Linux*)*]
+Parent="Opera 11.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_4*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.4*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_5*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.5*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_6*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.6*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_7*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.7*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_8*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.8*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_9*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.9*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10_10*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X 10.10*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac OS X*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Mac_PowerPC*)*]
+Parent="Opera 11.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 5.0*)*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.50*Windows 2000*)*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.50*Win 9x 4.90*)*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.50*Windows ME*)*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.50*Windows 95*)*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.50*Windows 98*)*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 4.0*)*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.50*Windows XP*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 5.1*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 5.2*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 6.0*)*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 6.1*)*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 6.2*)*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.50*Windows NT 6.3*)*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.50*(*FreeBSD*)*]
+Parent="Opera 11.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.50*(*Linux*)*]
+Parent="Opera 11.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_4*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.4*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_5*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.5*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_6*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.6*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_7*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.7*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_8*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.8*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_9*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.9*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10_10*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X 10.10*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.50*(*Mac OS X*)*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.50*(*Mac_PowerPC*)*]
+Parent="Opera 11.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.50*(*Windows NT 5.0*)*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.50*(*Windows 2000*)*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.50*(*Win 9x 4.90*)*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.50*(*Windows ME*)*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.50*(*Windows 95*)*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.50*(*Windows 98*)*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.50*(*Windows NT 4.0*)*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.50*(*Windows XP*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.50*(*Windows NT 5.1*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.50*(*Windows NT 5.2*)*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.50*(*Windows NT 6.0*)*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.50*(*Windows NT 6.1*)*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.50*(*Windows NT 6.2*)*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.50*(*Windows NT 6.3*)*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.50*]
+Parent="Opera 11.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.51
+
+[Opera 11.51]
+Parent="DefaultProperties"
+Comment="Opera 11.51"
+Browser="Opera"
+Version="11.51"
+MajorVer=11
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.51*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.51*FreeBSD*)*]
+Parent="Opera 11.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Linux*)*]
+Parent="Opera 11.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_4*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.4*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_5*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.5*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_6*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.6*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_7*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.7*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_8*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.8*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_9*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.9*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10_10*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X 10.10*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac OS X*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Mac_PowerPC*)*]
+Parent="Opera 11.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 5.0*)*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.51*Windows 2000*)*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.51*Win 9x 4.90*)*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.51*Windows ME*)*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.51*Windows 95*)*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.51*Windows 98*)*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 4.0*)*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.51*Windows XP*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 5.1*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 5.2*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 6.0*)*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 6.1*)*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 6.2*)*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.51*Windows NT 6.3*)*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.51*(*FreeBSD*)*]
+Parent="Opera 11.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.51*(*Linux*)*]
+Parent="Opera 11.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_4*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.4*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_5*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.5*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_6*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.6*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_7*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.7*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_8*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.8*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_9*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.9*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10_10*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X 10.10*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.51*(*Mac OS X*)*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.51*(*Mac_PowerPC*)*]
+Parent="Opera 11.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.51*(*Windows NT 5.0*)*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.51*(*Windows 2000*)*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.51*(*Win 9x 4.90*)*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.51*(*Windows ME*)*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.51*(*Windows 95*)*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.51*(*Windows 98*)*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.51*(*Windows NT 4.0*)*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.51*(*Windows XP*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.51*(*Windows NT 5.1*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.51*(*Windows NT 5.2*)*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.51*(*Windows NT 6.0*)*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.51*(*Windows NT 6.1*)*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.51*(*Windows NT 6.2*)*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.51*(*Windows NT 6.3*)*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.51*]
+Parent="Opera 11.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.52
+
+[Opera 11.52]
+Parent="DefaultProperties"
+Comment="Opera 11.52"
+Browser="Opera"
+Version="11.52"
+MajorVer=11
+MinorVer=52
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.52*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.52*FreeBSD*)*]
+Parent="Opera 11.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Linux*)*]
+Parent="Opera 11.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_4*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.4*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_5*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.5*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_6*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.6*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_7*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.7*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_8*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.8*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_9*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.9*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10_10*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X 10.10*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac OS X*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Mac_PowerPC*)*]
+Parent="Opera 11.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 5.0*)*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.52*Windows 2000*)*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.52*Win 9x 4.90*)*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.52*Windows ME*)*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.52*Windows 95*)*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.52*Windows 98*)*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 4.0*)*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.52*Windows XP*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 5.1*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 5.2*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 6.0*)*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 6.1*)*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 6.2*)*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.52*Windows NT 6.3*)*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.52*(*FreeBSD*)*]
+Parent="Opera 11.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.52*(*Linux*)*]
+Parent="Opera 11.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_4*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.4*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_5*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.5*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_6*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.6*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_7*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.7*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_8*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.8*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_9*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.9*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10_10*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X 10.10*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.52*(*Mac OS X*)*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.52*(*Mac_PowerPC*)*]
+Parent="Opera 11.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.52*(*Windows NT 5.0*)*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.52*(*Windows 2000*)*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.52*(*Win 9x 4.90*)*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.52*(*Windows ME*)*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.52*(*Windows 95*)*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.52*(*Windows 98*)*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.52*(*Windows NT 4.0*)*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.52*(*Windows XP*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.52*(*Windows NT 5.1*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.52*(*Windows NT 5.2*)*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.52*(*Windows NT 6.0*)*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.52*(*Windows NT 6.1*)*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.52*(*Windows NT 6.2*)*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.52*(*Windows NT 6.3*)*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.52*]
+Parent="Opera 11.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.10
+
+[Opera 11.10]
+Parent="DefaultProperties"
+Comment="Opera 11.10"
+Browser="Opera"
+Version="11.10"
+MajorVer=11
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.10*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.10*FreeBSD*)*]
+Parent="Opera 11.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Linux*)*]
+Parent="Opera 11.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_4*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.4*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_5*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.5*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_6*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.6*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_7*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.7*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_8*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.8*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_9*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.9*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10_10*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X 10.10*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac OS X*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Mac_PowerPC*)*]
+Parent="Opera 11.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*SunOS*)*]
+Parent="Opera 11.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.10*Windows CE*)*]
+Parent="Opera 11.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 5.0*)*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.10*Windows 2000*)*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.10*Win 9x 4.90*)*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.10*Windows ME*)*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.10*Windows 95*)*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.10*Windows 98*)*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 4.0*)*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.10*Windows XP*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 5.1*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 5.2*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 6.0*)*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 6.1*)*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 6.2*)*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.10*Windows NT 6.3*)*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.10*(*FreeBSD*)*]
+Parent="Opera 11.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.10*(*Linux*)*]
+Parent="Opera 11.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_4*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.4*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_5*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.5*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_6*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.6*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_7*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.7*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_8*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.8*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_9*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.9*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10_10*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X 10.10*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.10*(*Mac OS X*)*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.10*(*Mac_PowerPC*)*]
+Parent="Opera 11.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.10*(*SunOS*)*]
+Parent="Opera 11.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/11.10*(*Windows CE*)*]
+Parent="Opera 11.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/11.10*(*Windows NT 5.0*)*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.10*(*Windows 2000*)*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.10*(*Win 9x 4.90*)*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.10*(*Windows ME*)*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.10*(*Windows 95*)*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.10*(*Windows 98*)*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.10*(*Windows NT 4.0*)*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.10*(*Windows XP*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.10*(*Windows NT 5.1*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.10*(*Windows NT 5.2*)*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.10*(*Windows NT 6.0*)*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.10*(*Windows NT 6.1*)*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.10*(*Windows NT 6.2*)*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.10*(*Windows NT 6.3*)*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.10*]
+Parent="Opera 11.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.11
+
+[Opera 11.11]
+Parent="DefaultProperties"
+Comment="Opera 11.11"
+Browser="Opera"
+Version="11.11"
+MajorVer=11
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.11*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.11*FreeBSD*)*]
+Parent="Opera 11.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Linux*)*]
+Parent="Opera 11.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_4*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.4*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_5*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.5*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_6*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.6*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_7*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.7*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_8*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.8*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_9*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.9*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10_10*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X 10.10*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac OS X*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Mac_PowerPC*)*]
+Parent="Opera 11.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*SunOS*)*]
+Parent="Opera 11.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.11*Windows CE*)*]
+Parent="Opera 11.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 5.0*)*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.11*Windows 2000*)*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.11*Win 9x 4.90*)*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.11*Windows ME*)*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.11*Windows 95*)*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.11*Windows 98*)*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 4.0*)*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.11*Windows XP*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 5.1*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 5.2*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 6.0*)*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 6.1*)*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 6.2*)*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.11*Windows NT 6.3*)*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.11*(*FreeBSD*)*]
+Parent="Opera 11.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.11*(*Linux*)*]
+Parent="Opera 11.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_4*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.4*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_5*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.5*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_6*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.6*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_7*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.7*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_8*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.8*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_9*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.9*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10_10*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X 10.10*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.11*(*Mac OS X*)*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.11*(*Mac_PowerPC*)*]
+Parent="Opera 11.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.11*(*SunOS*)*]
+Parent="Opera 11.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/11.11*(*Windows CE*)*]
+Parent="Opera 11.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/11.11*(*Windows NT 5.0*)*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.11*(*Windows 2000*)*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.11*(*Win 9x 4.90*)*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.11*(*Windows ME*)*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.11*(*Windows 95*)*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.11*(*Windows 98*)*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.11*(*Windows NT 4.0*)*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.11*(*Windows XP*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.11*(*Windows NT 5.1*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.11*(*Windows NT 5.2*)*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.11*(*Windows NT 6.0*)*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.11*(*Windows NT 6.1*)*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.11*(*Windows NT 6.2*)*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.11*(*Windows NT 6.3*)*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.11*]
+Parent="Opera 11.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.00
+
+[Opera 11.00]
+Parent="DefaultProperties"
+Comment="Opera 11.00"
+Browser="Opera"
+Version="11.00"
+MajorVer=11
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.00*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.00*FreeBSD*)*]
+Parent="Opera 11.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Linux*)*]
+Parent="Opera 11.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_4*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.4*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_5*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.5*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_6*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.6*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_7*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.7*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_8*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.8*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_9*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.9*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10_10*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X 10.10*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac OS X*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Mac_PowerPC*)*]
+Parent="Opera 11.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*SunOS*)*]
+Parent="Opera 11.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.00*Windows CE*)*]
+Parent="Opera 11.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 5.0*)*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.00*Windows 2000*)*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.00*Win 9x 4.90*)*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.00*Windows ME*)*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.00*Windows 95*)*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.00*Windows 98*)*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 4.0*)*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.00*Windows XP*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 5.1*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 5.2*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 6.0*)*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 6.1*)*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 6.2*)*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.00*Windows NT 6.3*)*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.00*(*FreeBSD*)*]
+Parent="Opera 11.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.00*(*Linux*)*]
+Parent="Opera 11.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_4*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.4*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_5*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.5*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_6*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.6*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_7*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.7*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_8*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.8*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_9*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.9*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10_10*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X 10.10*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.00*(*Mac OS X*)*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.00*(*Mac_PowerPC*)*]
+Parent="Opera 11.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.00*(*SunOS*)*]
+Parent="Opera 11.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/11.00*(*Windows CE*)*]
+Parent="Opera 11.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/11.00*(*Windows NT 5.0*)*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.00*(*Windows 2000*)*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.00*(*Win 9x 4.90*)*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.00*(*Windows ME*)*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.00*(*Windows 95*)*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.00*(*Windows 98*)*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.00*(*Windows NT 4.0*)*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.00*(*Windows XP*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.00*(*Windows NT 5.1*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.00*(*Windows NT 5.2*)*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.00*(*Windows NT 6.0*)*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.00*(*Windows NT 6.1*)*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.00*(*Windows NT 6.2*)*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.00*(*Windows NT 6.3*)*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.00*]
+Parent="Opera 11.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 11.01
+
+[Opera 11.01]
+Parent="DefaultProperties"
+Comment="Opera 11.01"
+Browser="Opera"
+Version="11.01"
+MajorVer=11
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?11.01*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?11.01*FreeBSD*)*]
+Parent="Opera 11.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Linux*)*]
+Parent="Opera 11.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_4*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.4*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_5*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.5*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_6*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.6*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_7*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.7*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_8*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.8*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_9*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.9*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10_10*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X 10.10*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac OS X*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Mac_PowerPC*)*]
+Parent="Opera 11.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*SunOS*)*]
+Parent="Opera 11.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?11.01*Windows CE*)*]
+Parent="Opera 11.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 5.0*)*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.01*Windows 2000*)*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?11.01*Win 9x 4.90*)*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.01*Windows ME*)*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?11.01*Windows 95*)*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?11.01*Windows 98*)*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 4.0*)*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?11.01*Windows XP*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 5.1*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 5.2*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 6.0*)*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 6.1*)*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 6.2*)*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?11.01*Windows NT 6.3*)*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/11.01*(*FreeBSD*)*]
+Parent="Opera 11.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/11.01*(*Linux*)*]
+Parent="Opera 11.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_4*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.4*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_5*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.5*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_6*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.6*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_7*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.7*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_8*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.8*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_9*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.9*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10_10*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X 10.10*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/11.01*(*Mac OS X*)*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.01*(*Mac_PowerPC*)*]
+Parent="Opera 11.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/11.01*(*SunOS*)*]
+Parent="Opera 11.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/11.01*(*Windows CE*)*]
+Parent="Opera 11.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/11.01*(*Windows NT 5.0*)*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.01*(*Windows 2000*)*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/11.01*(*Win 9x 4.90*)*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.01*(*Windows ME*)*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/11.01*(*Windows 95*)*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/11.01*(*Windows 98*)*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/11.01*(*Windows NT 4.0*)*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/11.01*(*Windows XP*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.01*(*Windows NT 5.1*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/11.01*(*Windows NT 5.2*)*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/11.01*(*Windows NT 6.0*)*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/11.01*(*Windows NT 6.1*)*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/11.01*(*Windows NT 6.2*)*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/11.01*(*Windows NT 6.3*)*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/11.01*]
+Parent="Opera 11.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.00
+
+[Opera 10.00]
+Parent="DefaultProperties"
+Comment="Opera 10.00"
+Browser="Opera"
+Version="10.00"
+MajorVer=10
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.00*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.00*FreeBSD*)*]
+Parent="Opera 10.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Linux*)*]
+Parent="Opera 10.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_4*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.4*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_5*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.5*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_6*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.6*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_7*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.7*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_8*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.8*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_9*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.9*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10_10*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X 10.10*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac OS X*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Mac_PowerPC*)*]
+Parent="Opera 10.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*SunOS*)*]
+Parent="Opera 10.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.00*Windows CE*)*]
+Parent="Opera 10.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 5.0*)*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.00*Windows 2000*)*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.00*Win 9x 4.90*)*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.00*Windows ME*)*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.00*Windows 95*)*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.00*Windows 98*)*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 4.0*)*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.00*Windows XP*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 5.1*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 5.2*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 6.0*)*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 6.1*)*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 6.2*)*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.00*Windows NT 6.3*)*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.00*(*FreeBSD*)*]
+Parent="Opera 10.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.00*(*Linux*)*]
+Parent="Opera 10.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_4*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.4*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_5*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.5*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_6*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.6*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_7*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.7*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_8*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.8*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_9*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.9*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10_10*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X 10.10*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.00*(*Mac OS X*)*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.00*(*Mac_PowerPC*)*]
+Parent="Opera 10.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.00*(*SunOS*)*]
+Parent="Opera 10.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.00*(*Windows CE*)*]
+Parent="Opera 10.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.00*(*Windows NT 5.0*)*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.00*(*Windows 2000*)*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.00*(*Win 9x 4.90*)*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.00*(*Windows ME*)*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.00*(*Windows 95*)*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.00*(*Windows 98*)*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.00*(*Windows NT 4.0*)*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.00*(*Windows XP*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.00*(*Windows NT 5.1*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.00*(*Windows NT 5.2*)*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.00*(*Windows NT 6.0*)*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.00*(*Windows NT 6.1*)*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.00*(*Windows NT 6.2*)*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.00*(*Windows NT 6.3*)*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.00*]
+Parent="Opera 10.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.00*]
+Parent="Opera 10.00"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.01
+
+[Opera 10.01]
+Parent="DefaultProperties"
+Comment="Opera 10.01"
+Browser="Opera"
+Version="10.01"
+MajorVer=10
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.01*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.01*FreeBSD*)*]
+Parent="Opera 10.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Linux*)*]
+Parent="Opera 10.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_4*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.4*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_5*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.5*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_6*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.6*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_7*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.7*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_8*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.8*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_9*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.9*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10_10*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X 10.10*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac OS X*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Mac_PowerPC*)*]
+Parent="Opera 10.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*SunOS*)*]
+Parent="Opera 10.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.01*Windows CE*)*]
+Parent="Opera 10.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 5.0*)*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.01*Windows 2000*)*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.01*Win 9x 4.90*)*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.01*Windows ME*)*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.01*Windows 95*)*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.01*Windows 98*)*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 4.0*)*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.01*Windows XP*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 5.1*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 5.2*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 6.0*)*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 6.1*)*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 6.2*)*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.01*Windows NT 6.3*)*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.01*(*FreeBSD*)*]
+Parent="Opera 10.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.01*(*Linux*)*]
+Parent="Opera 10.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_4*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.4*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_5*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.5*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_6*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.6*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_7*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.7*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_8*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.8*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_9*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.9*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10_10*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X 10.10*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.01*(*Mac OS X*)*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.01*(*Mac_PowerPC*)*]
+Parent="Opera 10.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.01*(*SunOS*)*]
+Parent="Opera 10.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.01*(*Windows CE*)*]
+Parent="Opera 10.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.01*(*Windows NT 5.0*)*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.01*(*Windows 2000*)*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.01*(*Win 9x 4.90*)*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.01*(*Windows ME*)*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.01*(*Windows 95*)*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.01*(*Windows 98*)*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.01*(*Windows NT 4.0*)*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.01*(*Windows XP*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.01*(*Windows NT 5.1*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.01*(*Windows NT 5.2*)*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.01*(*Windows NT 6.0*)*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.01*(*Windows NT 6.1*)*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.01*(*Windows NT 6.2*)*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.01*(*Windows NT 6.3*)*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.01*]
+Parent="Opera 10.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.01*]
+Parent="Opera 10.01"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.10
+
+[Opera 10.10]
+Parent="DefaultProperties"
+Comment="Opera 10.10"
+Browser="Opera"
+Version="10.10"
+MajorVer=10
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.10*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.10*FreeBSD*)*]
+Parent="Opera 10.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Linux*)*]
+Parent="Opera 10.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_4*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.4*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_5*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.5*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_6*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.6*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_7*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.7*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_8*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.8*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_9*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.9*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10_10*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X 10.10*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac OS X*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Mac_PowerPC*)*]
+Parent="Opera 10.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*SunOS*)*]
+Parent="Opera 10.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.10*Windows CE*)*]
+Parent="Opera 10.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 5.0*)*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.10*Windows 2000*)*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.10*Win 9x 4.90*)*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.10*Windows ME*)*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.10*Windows 95*)*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.10*Windows 98*)*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 4.0*)*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.10*Windows XP*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 5.1*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 5.2*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 6.0*)*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 6.1*)*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 6.2*)*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.10*Windows NT 6.3*)*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.10*(*FreeBSD*)*]
+Parent="Opera 10.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.10*(*Linux*)*]
+Parent="Opera 10.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_4*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.4*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_5*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.5*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_6*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.6*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_7*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.7*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_8*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.8*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_9*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.9*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10_10*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X 10.10*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.10*(*Mac OS X*)*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.10*(*Mac_PowerPC*)*]
+Parent="Opera 10.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.10*(*SunOS*)*]
+Parent="Opera 10.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.10*(*Windows CE*)*]
+Parent="Opera 10.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.10*(*Windows NT 5.0*)*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.10*(*Windows 2000*)*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.10*(*Win 9x 4.90*)*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.10*(*Windows ME*)*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.10*(*Windows 95*)*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.10*(*Windows 98*)*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.10*(*Windows NT 4.0*)*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.10*(*Windows XP*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.10*(*Windows NT 5.1*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.10*(*Windows NT 5.2*)*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.10*(*Windows NT 6.0*)*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.10*(*Windows NT 6.1*)*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.10*(*Windows NT 6.2*)*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.10*(*Windows NT 6.3*)*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.10*]
+Parent="Opera 10.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.10*]
+Parent="Opera 10.10"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.11
+
+[Opera 10.11]
+Parent="DefaultProperties"
+Comment="Opera 10.11"
+Browser="Opera"
+Version="10.11"
+MajorVer=10
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.11*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.11*FreeBSD*)*]
+Parent="Opera 10.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Linux*)*]
+Parent="Opera 10.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_4*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.4*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_5*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.5*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_6*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.6*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_7*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.7*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_8*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.8*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_9*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.9*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10_10*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X 10.10*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac OS X*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Mac_PowerPC*)*]
+Parent="Opera 10.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*SunOS*)*]
+Parent="Opera 10.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.11*Windows CE*)*]
+Parent="Opera 10.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 5.0*)*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.11*Windows 2000*)*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.11*Win 9x 4.90*)*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.11*Windows ME*)*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.11*Windows 95*)*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.11*Windows 98*)*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 4.0*)*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.11*Windows XP*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 5.1*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 5.2*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 6.0*)*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 6.1*)*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 6.2*)*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.11*Windows NT 6.3*)*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.11*(*FreeBSD*)*]
+Parent="Opera 10.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.11*(*Linux*)*]
+Parent="Opera 10.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_4*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.4*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_5*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.5*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_6*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.6*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_7*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.7*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_8*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.8*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_9*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.9*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10_10*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X 10.10*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.11*(*Mac OS X*)*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.11*(*Mac_PowerPC*)*]
+Parent="Opera 10.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.11*(*SunOS*)*]
+Parent="Opera 10.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.11*(*Windows CE*)*]
+Parent="Opera 10.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.11*(*Windows NT 5.0*)*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.11*(*Windows 2000*)*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.11*(*Win 9x 4.90*)*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.11*(*Windows ME*)*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.11*(*Windows 95*)*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.11*(*Windows 98*)*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.11*(*Windows NT 4.0*)*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.11*(*Windows XP*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.11*(*Windows NT 5.1*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.11*(*Windows NT 5.2*)*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.11*(*Windows NT 6.0*)*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.11*(*Windows NT 6.1*)*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.11*(*Windows NT 6.2*)*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.11*(*Windows NT 6.3*)*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.11*]
+Parent="Opera 10.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.11*]
+Parent="Opera 10.11"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.20
+
+[Opera 10.20]
+Parent="DefaultProperties"
+Comment="Opera 10.20"
+Browser="Opera"
+Version="10.20"
+MajorVer=10
+MinorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.20*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.20*FreeBSD*)*]
+Parent="Opera 10.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Linux*)*]
+Parent="Opera 10.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_4*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.4*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_5*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.5*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_6*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.6*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_7*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.7*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_8*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.8*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_9*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.9*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10_10*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X 10.10*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac OS X*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Mac_PowerPC*)*]
+Parent="Opera 10.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*SunOS*)*]
+Parent="Opera 10.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.20*Windows CE*)*]
+Parent="Opera 10.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 5.0*)*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.20*Windows 2000*)*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.20*Win 9x 4.90*)*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.20*Windows ME*)*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.20*Windows 95*)*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.20*Windows 98*)*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 4.0*)*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.20*Windows XP*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 5.1*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 5.2*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 6.0*)*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 6.1*)*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 6.2*)*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.20*Windows NT 6.3*)*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.20*(*FreeBSD*)*]
+Parent="Opera 10.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.20*(*Linux*)*]
+Parent="Opera 10.20"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_4*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.4*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_5*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.5*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_6*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.6*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_7*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.7*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_8*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.8*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_9*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.9*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10_10*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X 10.10*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.20*(*Mac OS X*)*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.20*(*Mac_PowerPC*)*]
+Parent="Opera 10.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.20*(*SunOS*)*]
+Parent="Opera 10.20"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.20*(*Windows CE*)*]
+Parent="Opera 10.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.20*(*Windows NT 5.0*)*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.20*(*Windows 2000*)*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.20*(*Win 9x 4.90*)*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.20*(*Windows ME*)*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.20*(*Windows 95*)*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.20*(*Windows 98*)*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.20*(*Windows NT 4.0*)*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.20*(*Windows XP*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.20*(*Windows NT 5.1*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.20*(*Windows NT 5.2*)*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.20*(*Windows NT 6.0*)*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.20*(*Windows NT 6.1*)*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.20*(*Windows NT 6.2*)*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.20*(*Windows NT 6.3*)*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.20*]
+Parent="Opera 10.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.20*]
+Parent="Opera 10.20"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.50
+
+[Opera 10.50]
+Parent="DefaultProperties"
+Comment="Opera 10.50"
+Browser="Opera"
+Version="10.50"
+MajorVer=10
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.50*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.50*FreeBSD*)*]
+Parent="Opera 10.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Linux*)*]
+Parent="Opera 10.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_4*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.4*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_5*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.5*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_6*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.6*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_7*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.7*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_8*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.8*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_9*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.9*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10_10*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X 10.10*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac OS X*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Mac_PowerPC*)*]
+Parent="Opera 10.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*SunOS*)*]
+Parent="Opera 10.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.50*Windows CE*)*]
+Parent="Opera 10.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 5.0*)*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.50*Windows 2000*)*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.50*Win 9x 4.90*)*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.50*Windows ME*)*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.50*Windows 95*)*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.50*Windows 98*)*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 4.0*)*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.50*Windows XP*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 5.1*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 5.2*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 6.0*)*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 6.1*)*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 6.2*)*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.50*Windows NT 6.3*)*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.50*(*FreeBSD*)*]
+Parent="Opera 10.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.50*(*Linux*)*]
+Parent="Opera 10.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_4*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.4*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_5*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.5*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_6*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.6*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_7*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.7*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_8*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.8*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_9*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.9*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10_10*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X 10.10*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.50*(*Mac OS X*)*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.50*(*Mac_PowerPC*)*]
+Parent="Opera 10.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.50*(*SunOS*)*]
+Parent="Opera 10.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.50*(*Windows CE*)*]
+Parent="Opera 10.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.50*(*Windows NT 5.0*)*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.50*(*Windows 2000*)*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.50*(*Win 9x 4.90*)*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.50*(*Windows ME*)*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.50*(*Windows 95*)*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.50*(*Windows 98*)*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.50*(*Windows NT 4.0*)*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.50*(*Windows XP*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.50*(*Windows NT 5.1*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.50*(*Windows NT 5.2*)*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.50*(*Windows NT 6.0*)*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.50*(*Windows NT 6.1*)*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.50*(*Windows NT 6.2*)*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.50*(*Windows NT 6.3*)*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.50*]
+Parent="Opera 10.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.50*]
+Parent="Opera 10.50"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.51
+
+[Opera 10.51]
+Parent="DefaultProperties"
+Comment="Opera 10.51"
+Browser="Opera"
+Version="10.51"
+MajorVer=10
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.51*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.51*FreeBSD*)*]
+Parent="Opera 10.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Linux*)*]
+Parent="Opera 10.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_4*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.4*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_5*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.5*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_6*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.6*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_7*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.7*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_8*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.8*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_9*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.9*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10_10*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X 10.10*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac OS X*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Mac_PowerPC*)*]
+Parent="Opera 10.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*SunOS*)*]
+Parent="Opera 10.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.51*Windows CE*)*]
+Parent="Opera 10.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 5.0*)*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.51*Windows 2000*)*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.51*Win 9x 4.90*)*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.51*Windows ME*)*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.51*Windows 95*)*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.51*Windows 98*)*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 4.0*)*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.51*Windows XP*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 5.1*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 5.2*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 6.0*)*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 6.1*)*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 6.2*)*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.51*Windows NT 6.3*)*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.51*(*FreeBSD*)*]
+Parent="Opera 10.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.51*(*Linux*)*]
+Parent="Opera 10.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_4*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.4*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_5*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.5*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_6*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.6*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_7*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.7*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_8*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.8*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_9*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.9*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10_10*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X 10.10*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.51*(*Mac OS X*)*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.51*(*Mac_PowerPC*)*]
+Parent="Opera 10.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.51*(*SunOS*)*]
+Parent="Opera 10.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.51*(*Windows CE*)*]
+Parent="Opera 10.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.51*(*Windows NT 5.0*)*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.51*(*Windows 2000*)*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.51*(*Win 9x 4.90*)*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.51*(*Windows ME*)*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.51*(*Windows 95*)*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.51*(*Windows 98*)*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.51*(*Windows NT 4.0*)*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.51*(*Windows XP*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.51*(*Windows NT 5.1*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.51*(*Windows NT 5.2*)*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.51*(*Windows NT 6.0*)*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.51*(*Windows NT 6.1*)*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.51*(*Windows NT 6.2*)*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.51*(*Windows NT 6.3*)*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.51*]
+Parent="Opera 10.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.51*]
+Parent="Opera 10.51"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.52
+
+[Opera 10.52]
+Parent="DefaultProperties"
+Comment="Opera 10.52"
+Browser="Opera"
+Version="10.52"
+MajorVer=10
+MinorVer=52
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.52*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.52*FreeBSD*)*]
+Parent="Opera 10.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Linux*)*]
+Parent="Opera 10.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_4*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.4*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_5*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.5*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_6*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.6*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_7*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.7*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_8*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.8*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_9*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.9*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10_10*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X 10.10*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac OS X*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Mac_PowerPC*)*]
+Parent="Opera 10.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*SunOS*)*]
+Parent="Opera 10.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.52*Windows CE*)*]
+Parent="Opera 10.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 5.0*)*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.52*Windows 2000*)*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.52*Win 9x 4.90*)*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.52*Windows ME*)*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.52*Windows 95*)*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.52*Windows 98*)*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 4.0*)*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.52*Windows XP*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 5.1*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 5.2*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 6.0*)*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 6.1*)*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 6.2*)*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.52*Windows NT 6.3*)*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.52*(*FreeBSD*)*]
+Parent="Opera 10.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.52*(*Linux*)*]
+Parent="Opera 10.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_4*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.4*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_5*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.5*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_6*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.6*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_7*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.7*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_8*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.8*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_9*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.9*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10_10*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X 10.10*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.52*(*Mac OS X*)*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.52*(*Mac_PowerPC*)*]
+Parent="Opera 10.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.52*(*SunOS*)*]
+Parent="Opera 10.52"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.52*(*Windows CE*)*]
+Parent="Opera 10.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.52*(*Windows NT 5.0*)*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.52*(*Windows 2000*)*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.52*(*Win 9x 4.90*)*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.52*(*Windows ME*)*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.52*(*Windows 95*)*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.52*(*Windows 98*)*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.52*(*Windows NT 4.0*)*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.52*(*Windows XP*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.52*(*Windows NT 5.1*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.52*(*Windows NT 5.2*)*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.52*(*Windows NT 6.0*)*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.52*(*Windows NT 6.1*)*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.52*(*Windows NT 6.2*)*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.52*(*Windows NT 6.3*)*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.52*]
+Parent="Opera 10.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.52*]
+Parent="Opera 10.52"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.53
+
+[Opera 10.53]
+Parent="DefaultProperties"
+Comment="Opera 10.53"
+Browser="Opera"
+Version="10.53"
+MajorVer=10
+MinorVer=53
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.53*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.53*FreeBSD*)*]
+Parent="Opera 10.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Linux*)*]
+Parent="Opera 10.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_4*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.4*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_5*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.5*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_6*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.6*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_7*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.7*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_8*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.8*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_9*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.9*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10_10*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X 10.10*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac OS X*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Mac_PowerPC*)*]
+Parent="Opera 10.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*SunOS*)*]
+Parent="Opera 10.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.53*Windows CE*)*]
+Parent="Opera 10.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 5.0*)*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.53*Windows 2000*)*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.53*Win 9x 4.90*)*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.53*Windows ME*)*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.53*Windows 95*)*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.53*Windows 98*)*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 4.0*)*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.53*Windows XP*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 5.1*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 5.2*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 6.0*)*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 6.1*)*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 6.2*)*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.53*Windows NT 6.3*)*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.53*(*FreeBSD*)*]
+Parent="Opera 10.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.53*(*Linux*)*]
+Parent="Opera 10.53"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_4*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.4*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_5*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.5*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_6*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.6*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_7*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.7*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_8*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.8*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_9*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.9*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10_10*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X 10.10*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.53*(*Mac OS X*)*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.53*(*Mac_PowerPC*)*]
+Parent="Opera 10.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.53*(*SunOS*)*]
+Parent="Opera 10.53"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.53*(*Windows CE*)*]
+Parent="Opera 10.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.53*(*Windows NT 5.0*)*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.53*(*Windows 2000*)*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.53*(*Win 9x 4.90*)*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.53*(*Windows ME*)*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.53*(*Windows 95*)*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.53*(*Windows 98*)*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.53*(*Windows NT 4.0*)*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.53*(*Windows XP*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.53*(*Windows NT 5.1*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.53*(*Windows NT 5.2*)*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.53*(*Windows NT 6.0*)*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.53*(*Windows NT 6.1*)*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.53*(*Windows NT 6.2*)*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.53*(*Windows NT 6.3*)*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.53*]
+Parent="Opera 10.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.53*]
+Parent="Opera 10.53"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.54
+
+[Opera 10.54]
+Parent="DefaultProperties"
+Comment="Opera 10.54"
+Browser="Opera"
+Version="10.54"
+MajorVer=10
+MinorVer=54
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.54*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.54*FreeBSD*)*]
+Parent="Opera 10.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Linux*)*]
+Parent="Opera 10.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_4*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.4*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_5*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.5*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_6*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.6*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_7*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.7*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_8*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.8*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_9*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.9*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10_10*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X 10.10*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac OS X*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Mac_PowerPC*)*]
+Parent="Opera 10.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*SunOS*)*]
+Parent="Opera 10.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.54*Windows CE*)*]
+Parent="Opera 10.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 5.0*)*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.54*Windows 2000*)*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.54*Win 9x 4.90*)*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.54*Windows ME*)*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.54*Windows 95*)*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.54*Windows 98*)*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 4.0*)*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.54*Windows XP*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 5.1*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 5.2*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 6.0*)*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 6.1*)*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 6.2*)*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.54*Windows NT 6.3*)*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.54*(*FreeBSD*)*]
+Parent="Opera 10.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.54*(*Linux*)*]
+Parent="Opera 10.54"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_4*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.4*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_5*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.5*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_6*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.6*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_7*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.7*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_8*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.8*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_9*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.9*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10_10*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X 10.10*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.54*(*Mac OS X*)*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.54*(*Mac_PowerPC*)*]
+Parent="Opera 10.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.54*(*SunOS*)*]
+Parent="Opera 10.54"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.54*(*Windows CE*)*]
+Parent="Opera 10.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.54*(*Windows NT 5.0*)*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.54*(*Windows 2000*)*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.54*(*Win 9x 4.90*)*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.54*(*Windows ME*)*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.54*(*Windows 95*)*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.54*(*Windows 98*)*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.54*(*Windows NT 4.0*)*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.54*(*Windows XP*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.54*(*Windows NT 5.1*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.54*(*Windows NT 5.2*)*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.54*(*Windows NT 6.0*)*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.54*(*Windows NT 6.1*)*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.54*(*Windows NT 6.2*)*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.54*(*Windows NT 6.3*)*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.54*]
+Parent="Opera 10.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.54*]
+Parent="Opera 10.54"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.60
+
+[Opera 10.60]
+Parent="DefaultProperties"
+Comment="Opera 10.60"
+Browser="Opera"
+Version="10.60"
+MajorVer=10
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.60*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.60*FreeBSD*)*]
+Parent="Opera 10.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Linux*)*]
+Parent="Opera 10.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_4*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.4*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_5*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.5*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_6*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.6*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_7*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.7*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_8*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.8*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_9*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.9*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10_10*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X 10.10*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac OS X*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Mac_PowerPC*)*]
+Parent="Opera 10.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*SunOS*)*]
+Parent="Opera 10.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.60*Windows CE*)*]
+Parent="Opera 10.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 5.0*)*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.60*Windows 2000*)*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.60*Win 9x 4.90*)*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.60*Windows ME*)*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.60*Windows 95*)*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.60*Windows 98*)*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 4.0*)*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.60*Windows XP*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 5.1*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 5.2*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 6.0*)*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 6.1*)*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 6.2*)*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.60*Windows NT 6.3*)*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.60*(*FreeBSD*)*]
+Parent="Opera 10.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.60*(*Linux*)*]
+Parent="Opera 10.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_4*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.4*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_5*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.5*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_6*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.6*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_7*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.7*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_8*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.8*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_9*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.9*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10_10*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X 10.10*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.60*(*Mac OS X*)*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.60*(*Mac_PowerPC*)*]
+Parent="Opera 10.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.60*(*SunOS*)*]
+Parent="Opera 10.60"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.60*(*Windows CE*)*]
+Parent="Opera 10.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.60*(*Windows NT 5.0*)*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.60*(*Windows 2000*)*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.60*(*Win 9x 4.90*)*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.60*(*Windows ME*)*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.60*(*Windows 95*)*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.60*(*Windows 98*)*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.60*(*Windows NT 4.0*)*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.60*(*Windows XP*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.60*(*Windows NT 5.1*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.60*(*Windows NT 5.2*)*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.60*(*Windows NT 6.0*)*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.60*(*Windows NT 6.1*)*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.60*(*Windows NT 6.2*)*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.60*(*Windows NT 6.3*)*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.60*]
+Parent="Opera 10.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.60*]
+Parent="Opera 10.60"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.61
+
+[Opera 10.61]
+Parent="DefaultProperties"
+Comment="Opera 10.61"
+Browser="Opera"
+Version="10.61"
+MajorVer=10
+MinorVer=61
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.61*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.61*FreeBSD*)*]
+Parent="Opera 10.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Linux*)*]
+Parent="Opera 10.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_4*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.4*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_5*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.5*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_6*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.6*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_7*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.7*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_8*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.8*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_9*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.9*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10_10*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X 10.10*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac OS X*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Mac_PowerPC*)*]
+Parent="Opera 10.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*SunOS*)*]
+Parent="Opera 10.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.61*Windows CE*)*]
+Parent="Opera 10.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 5.0*)*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.61*Windows 2000*)*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.61*Win 9x 4.90*)*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.61*Windows ME*)*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.61*Windows 95*)*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.61*Windows 98*)*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 4.0*)*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.61*Windows XP*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 5.1*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 5.2*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 6.0*)*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 6.1*)*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 6.2*)*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.61*Windows NT 6.3*)*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.61*(*FreeBSD*)*]
+Parent="Opera 10.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.61*(*Linux*)*]
+Parent="Opera 10.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_4*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.4*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_5*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.5*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_6*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.6*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_7*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.7*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_8*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.8*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_9*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.9*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10_10*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X 10.10*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.61*(*Mac OS X*)*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.61*(*Mac_PowerPC*)*]
+Parent="Opera 10.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.61*(*SunOS*)*]
+Parent="Opera 10.61"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.61*(*Windows CE*)*]
+Parent="Opera 10.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.61*(*Windows NT 5.0*)*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.61*(*Windows 2000*)*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.61*(*Win 9x 4.90*)*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.61*(*Windows ME*)*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.61*(*Windows 95*)*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.61*(*Windows 98*)*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.61*(*Windows NT 4.0*)*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.61*(*Windows XP*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.61*(*Windows NT 5.1*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.61*(*Windows NT 5.2*)*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.61*(*Windows NT 6.0*)*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.61*(*Windows NT 6.1*)*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.61*(*Windows NT 6.2*)*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.61*(*Windows NT 6.3*)*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.61*]
+Parent="Opera 10.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.61*]
+Parent="Opera 10.61"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.62
+
+[Opera 10.62]
+Parent="DefaultProperties"
+Comment="Opera 10.62"
+Browser="Opera"
+Version="10.62"
+MajorVer=10
+MinorVer=62
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.62*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.62*FreeBSD*)*]
+Parent="Opera 10.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Linux*)*]
+Parent="Opera 10.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_4*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.4*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_5*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.5*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_6*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.6*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_7*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.7*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_8*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.8*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_9*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.9*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10_10*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X 10.10*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac OS X*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Mac_PowerPC*)*]
+Parent="Opera 10.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*SunOS*)*]
+Parent="Opera 10.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.62*Windows CE*)*]
+Parent="Opera 10.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 5.0*)*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.62*Windows 2000*)*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.62*Win 9x 4.90*)*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.62*Windows ME*)*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.62*Windows 95*)*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.62*Windows 98*)*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 4.0*)*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.62*Windows XP*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 5.1*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 5.2*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 6.0*)*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 6.1*)*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 6.2*)*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.62*Windows NT 6.3*)*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.62*(*FreeBSD*)*]
+Parent="Opera 10.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.62*(*Linux*)*]
+Parent="Opera 10.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_4*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.4*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_5*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.5*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_6*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.6*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_7*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.7*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_8*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.8*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_9*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.9*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10_10*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X 10.10*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.62*(*Mac OS X*)*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.62*(*Mac_PowerPC*)*]
+Parent="Opera 10.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.62*(*SunOS*)*]
+Parent="Opera 10.62"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.62*(*Windows CE*)*]
+Parent="Opera 10.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.62*(*Windows NT 5.0*)*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.62*(*Windows 2000*)*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.62*(*Win 9x 4.90*)*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.62*(*Windows ME*)*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.62*(*Windows 95*)*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.62*(*Windows 98*)*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.62*(*Windows NT 4.0*)*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.62*(*Windows XP*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.62*(*Windows NT 5.1*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.62*(*Windows NT 5.2*)*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.62*(*Windows NT 6.0*)*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.62*(*Windows NT 6.1*)*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.62*(*Windows NT 6.2*)*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.62*(*Windows NT 6.3*)*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.62*]
+Parent="Opera 10.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.62*]
+Parent="Opera 10.62"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.63
+
+[Opera 10.63]
+Parent="DefaultProperties"
+Comment="Opera 10.63"
+Browser="Opera"
+Version="10.63"
+MajorVer=10
+MinorVer=63
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.63*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.63*FreeBSD*)*]
+Parent="Opera 10.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Linux*)*]
+Parent="Opera 10.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_4*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.4*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_5*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.5*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_6*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.6*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_7*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.7*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_8*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.8*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_9*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.9*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10_10*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X 10.10*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac OS X*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Mac_PowerPC*)*]
+Parent="Opera 10.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*SunOS*)*]
+Parent="Opera 10.63"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.63*Windows CE*)*]
+Parent="Opera 10.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 5.0*)*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.63*Windows 2000*)*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.63*Win 9x 4.90*)*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.63*Windows ME*)*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.63*Windows 95*)*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.63*Windows 98*)*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 4.0*)*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.63*Windows XP*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 5.1*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 5.2*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 6.0*)*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 6.1*)*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 6.2*)*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.63*Windows NT 6.3*)*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.63*(*FreeBSD*)*]
+Parent="Opera 10.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.63*(*Linux*)*]
+Parent="Opera 10.63"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_4*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.4*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_5*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.5*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_6*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.6*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_7*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.7*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_8*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.8*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_9*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.9*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10_10*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X 10.10*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.63*(*Mac OS X*)*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.63*(*Mac_PowerPC*)*]
+Parent="Opera 10.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.63*(*SunOS*)*]
+Parent="Opera 10.63"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.63*(*Windows CE*)*]
+Parent="Opera 10.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.63*(*Windows NT 5.0*)*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.63*(*Windows 2000*)*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.63*(*Win 9x 4.90*)*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.63*(*Windows ME*)*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.63*(*Windows 95*)*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.63*(*Windows 98*)*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.63*(*Windows NT 4.0*)*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.63*(*Windows XP*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.63*(*Windows NT 5.1*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.63*(*Windows NT 5.2*)*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.63*(*Windows NT 6.0*)*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.63*(*Windows NT 6.1*)*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.63*(*Windows NT 6.2*)*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.63*(*Windows NT 6.3*)*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.63*]
+Parent="Opera 10.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.63*]
+Parent="Opera 10.63"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 10.70
+
+[Opera 10.70]
+Parent="DefaultProperties"
+Comment="Opera 10.70"
+Browser="Opera"
+Version="10.70"
+MajorVer=10
+MinorVer=70
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?10.70*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?10.70*FreeBSD*)*]
+Parent="Opera 10.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Linux*)*]
+Parent="Opera 10.70"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_4*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.4*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_5*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.5*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_6*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.6*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_7*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.7*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_8*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.8*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_9*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.9*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10_10*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X 10.10*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac OS X*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Mac_PowerPC*)*]
+Parent="Opera 10.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*SunOS*)*]
+Parent="Opera 10.70"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?10.70*Windows CE*)*]
+Parent="Opera 10.70"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 5.0*)*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.70*Windows 2000*)*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?10.70*Win 9x 4.90*)*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.70*Windows ME*)*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?10.70*Windows 95*)*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?10.70*Windows 98*)*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 4.0*)*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?10.70*Windows XP*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 5.1*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 5.2*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 6.0*)*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 6.1*)*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 6.2*)*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?10.70*Windows NT 6.3*)*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/10.70*(*FreeBSD*)*]
+Parent="Opera 10.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/10.70*(*Linux*)*]
+Parent="Opera 10.70"
+Platform="Linux"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_4*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.4*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_5*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.5*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_6*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.6*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_7*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.7*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_8*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.8*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_9*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.9*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10_10*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X 10.10*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/10.70*(*Mac OS X*)*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.70*(*Mac_PowerPC*)*]
+Parent="Opera 10.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/10.70*(*SunOS*)*]
+Parent="Opera 10.70"
+Platform="SunOS"
+Win32="false"
+
+[Opera/10.70*(*Windows CE*)*]
+Parent="Opera 10.70"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/10.70*(*Windows NT 5.0*)*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.70*(*Windows 2000*)*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/10.70*(*Win 9x 4.90*)*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.70*(*Windows ME*)*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/10.70*(*Windows 95*)*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/10.70*(*Windows 98*)*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/10.70*(*Windows NT 4.0*)*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/10.70*(*Windows XP*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.70*(*Windows NT 5.1*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/10.70*(*Windows NT 5.2*)*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/10.70*(*Windows NT 6.0*)*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/10.70*(*Windows NT 6.1*)*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/10.70*(*Windows NT 6.2*)*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/10.70*(*Windows NT 6.3*)*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/10.70*]
+Parent="Opera 10.70"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[MicromaxX650 ASTRO36_TD/* MAUI/* Release/* Browser/Opera */MIDP* Opera/9.80 (*) Presto/* Version/10.70*]
+Parent="Opera 10.70"
+Platform="JAVA"
+Win32="false"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.00
+
+[Opera 9.00]
+Parent="DefaultProperties"
+Comment="Opera 9.00"
+Browser="Opera"
+Version="9.00"
+MajorVer=9
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.00*]
+Parent="Opera 9.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.00*FreeBSD*)*]
+Parent="Opera 9.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Linux*)*]
+Parent="Opera 9.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_4*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.4*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_5*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.5*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_6*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.6*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_7*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.7*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_8*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.8*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_9*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.9*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10_10*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X 10.10*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac OS X*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Mac_PowerPC*)*]
+Parent="Opera 9.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*SunOS*)*]
+Parent="Opera 9.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.00*Windows CE*)*]
+Parent="Opera 9.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 5.0*)*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.00*Windows 2000*)*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.00*Win 9x 4.90*)*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.00*Windows ME*)*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.00*Windows 95*)*]
+Parent="Opera 9.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.00*Windows 98*)*]
+Parent="Opera 9.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 4.0*)*]
+Parent="Opera 9.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.00*Windows XP*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 5.1*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 5.2*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 6.0*)*]
+Parent="Opera 9.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 6.1*)*]
+Parent="Opera 9.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 6.2*)*]
+Parent="Opera 9.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.00*Windows NT 6.3*)*]
+Parent="Opera 9.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.00*(*FreeBSD*)*]
+Parent="Opera 9.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.00*(*Linux*)*]
+Parent="Opera 9.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_4*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.4*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_5*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.5*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_6*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.6*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_7*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.7*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_8*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.8*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_9*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.9*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10_10*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X 10.10*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.00*(*Mac OS X*)*]
+Parent="Opera 9.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.00*(*Mac_PowerPC*)*]
+Parent="Opera 9.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.00*(*SunOS*)*]
+Parent="Opera 9.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.00*(*Windows CE*)*]
+Parent="Opera 9.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.00*(*Windows NT 5.0*)*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.00*(*Windows 2000*)*]
+Parent="Opera 9.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.00*(*Win 9x 4.90*)*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.00*(*Windows ME*)*]
+Parent="Opera 9.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.00*(*Windows 95*)*]
+Parent="Opera 9.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.00*(*Windows 98*)*]
+Parent="Opera 9.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.00*(*Windows NT 4.0*)*]
+Parent="Opera 9.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.00*(*Windows XP*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.00*(*Windows NT 5.1*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.00*(*Windows NT 5.2*)*]
+Parent="Opera 9.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.00*(*Windows NT 6.0*)*]
+Parent="Opera 9.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.00*(*Windows NT 6.1*)*]
+Parent="Opera 9.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.00*(*Windows NT 6.2*)*]
+Parent="Opera 9.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.00*(*Windows NT 6.3*)*]
+Parent="Opera 9.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.00*(Nintendo Wii; U; *)]
+Parent="Opera 9.00"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.01
+
+[Opera 9.01]
+Parent="DefaultProperties"
+Comment="Opera 9.01"
+Browser="Opera"
+Version="9.01"
+MajorVer=9
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.01*]
+Parent="Opera 9.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.01*FreeBSD*)*]
+Parent="Opera 9.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Linux*)*]
+Parent="Opera 9.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_4*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.4*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_5*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.5*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_6*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.6*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_7*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.7*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_8*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.8*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_9*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.9*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10_10*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X 10.10*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac OS X*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Mac_PowerPC*)*]
+Parent="Opera 9.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*SunOS*)*]
+Parent="Opera 9.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.01*Windows CE*)*]
+Parent="Opera 9.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 5.0*)*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.01*Windows 2000*)*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.01*Win 9x 4.90*)*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.01*Windows ME*)*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.01*Windows 95*)*]
+Parent="Opera 9.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.01*Windows 98*)*]
+Parent="Opera 9.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 4.0*)*]
+Parent="Opera 9.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.01*Windows XP*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 5.1*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 5.2*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 6.0*)*]
+Parent="Opera 9.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 6.1*)*]
+Parent="Opera 9.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 6.2*)*]
+Parent="Opera 9.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.01*Windows NT 6.3*)*]
+Parent="Opera 9.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.01*(*FreeBSD*)*]
+Parent="Opera 9.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.01*(*Linux*)*]
+Parent="Opera 9.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_4*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.4*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_5*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.5*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_6*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.6*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_7*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.7*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_8*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.8*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_9*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.9*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10_10*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X 10.10*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.01*(*Mac OS X*)*]
+Parent="Opera 9.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.01*(*Mac_PowerPC*)*]
+Parent="Opera 9.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.01*(*SunOS*)*]
+Parent="Opera 9.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.01*(*Windows CE*)*]
+Parent="Opera 9.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.01*(*Windows NT 5.0*)*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.01*(*Windows 2000*)*]
+Parent="Opera 9.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.01*(*Win 9x 4.90*)*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.01*(*Windows ME*)*]
+Parent="Opera 9.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.01*(*Windows 95*)*]
+Parent="Opera 9.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.01*(*Windows 98*)*]
+Parent="Opera 9.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.01*(*Windows NT 4.0*)*]
+Parent="Opera 9.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.01*(*Windows XP*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.01*(*Windows NT 5.1*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.01*(*Windows NT 5.2*)*]
+Parent="Opera 9.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.01*(*Windows NT 6.0*)*]
+Parent="Opera 9.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.01*(*Windows NT 6.1*)*]
+Parent="Opera 9.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.01*(*Windows NT 6.2*)*]
+Parent="Opera 9.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.01*(*Windows NT 6.3*)*]
+Parent="Opera 9.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.01*(Nintendo Wii; U; *)]
+Parent="Opera 9.01"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.02
+
+[Opera 9.02]
+Parent="DefaultProperties"
+Comment="Opera 9.02"
+Browser="Opera"
+Version="9.02"
+MajorVer=9
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.02*]
+Parent="Opera 9.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.02*FreeBSD*)*]
+Parent="Opera 9.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Linux*)*]
+Parent="Opera 9.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_4*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.4*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_5*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.5*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_6*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.6*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_7*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.7*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_8*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.8*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_9*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.9*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10_10*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X 10.10*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac OS X*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Mac_PowerPC*)*]
+Parent="Opera 9.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*SunOS*)*]
+Parent="Opera 9.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.02*Windows CE*)*]
+Parent="Opera 9.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 5.0*)*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.02*Windows 2000*)*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.02*Win 9x 4.90*)*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.02*Windows ME*)*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.02*Windows 95*)*]
+Parent="Opera 9.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.02*Windows 98*)*]
+Parent="Opera 9.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 4.0*)*]
+Parent="Opera 9.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.02*Windows XP*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 5.1*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 5.2*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 6.0*)*]
+Parent="Opera 9.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 6.1*)*]
+Parent="Opera 9.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 6.2*)*]
+Parent="Opera 9.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.02*Windows NT 6.3*)*]
+Parent="Opera 9.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.02*(*FreeBSD*)*]
+Parent="Opera 9.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.02*(*Linux*)*]
+Parent="Opera 9.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_4*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.4*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_5*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.5*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_6*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.6*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_7*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.7*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_8*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.8*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_9*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.9*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10_10*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X 10.10*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.02*(*Mac OS X*)*]
+Parent="Opera 9.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.02*(*Mac_PowerPC*)*]
+Parent="Opera 9.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.02*(*SunOS*)*]
+Parent="Opera 9.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.02*(*Windows CE*)*]
+Parent="Opera 9.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.02*(*Windows NT 5.0*)*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.02*(*Windows 2000*)*]
+Parent="Opera 9.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.02*(*Win 9x 4.90*)*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.02*(*Windows ME*)*]
+Parent="Opera 9.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.02*(*Windows 95*)*]
+Parent="Opera 9.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.02*(*Windows 98*)*]
+Parent="Opera 9.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.02*(*Windows NT 4.0*)*]
+Parent="Opera 9.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.02*(*Windows XP*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.02*(*Windows NT 5.1*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.02*(*Windows NT 5.2*)*]
+Parent="Opera 9.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.02*(*Windows NT 6.0*)*]
+Parent="Opera 9.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.02*(*Windows NT 6.1*)*]
+Parent="Opera 9.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.02*(*Windows NT 6.2*)*]
+Parent="Opera 9.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.02*(*Windows NT 6.3*)*]
+Parent="Opera 9.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.02*(Nintendo Wii; U; *)]
+Parent="Opera 9.02"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.0
+
+[Opera 9.0]
+Parent="DefaultProperties"
+Comment="Opera 9.0"
+Browser="Opera"
+Version="9.0"
+MajorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.0*]
+Parent="Opera 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.0*FreeBSD*)*]
+Parent="Opera 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Linux*)*]
+Parent="Opera 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_4*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.4*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_5*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.5*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_6*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.6*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_7*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.7*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_8*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.8*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_9*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.9*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10_10*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X 10.10*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac OS X*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Mac_PowerPC*)*]
+Parent="Opera 9.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*SunOS*)*]
+Parent="Opera 9.0"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.0*Windows CE*)*]
+Parent="Opera 9.0"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 5.0*)*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.0*Windows 2000*)*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.0*Win 9x 4.90*)*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.0*Windows ME*)*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.0*Windows 95*)*]
+Parent="Opera 9.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.0*Windows 98*)*]
+Parent="Opera 9.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 4.0*)*]
+Parent="Opera 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.0*Windows XP*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 5.1*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 5.2*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 6.0*)*]
+Parent="Opera 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 6.1*)*]
+Parent="Opera 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 6.2*)*]
+Parent="Opera 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.0*Windows NT 6.3*)*]
+Parent="Opera 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.0*(*FreeBSD*)*]
+Parent="Opera 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.0*(*Linux*)*]
+Parent="Opera 9.0"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_4*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.4*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_5*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.5*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_6*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.6*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_7*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.7*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_8*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.8*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_9*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.9*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10_10*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X 10.10*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.0*(*Mac OS X*)*]
+Parent="Opera 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.0*(*Mac_PowerPC*)*]
+Parent="Opera 9.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.0*(*SunOS*)*]
+Parent="Opera 9.0"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.0*(*Windows CE*)*]
+Parent="Opera 9.0"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.0*(*Windows NT 5.0*)*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.0*(*Windows 2000*)*]
+Parent="Opera 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.0*(*Win 9x 4.90*)*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.0*(*Windows ME*)*]
+Parent="Opera 9.0"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.0*(*Windows 95*)*]
+Parent="Opera 9.0"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.0*(*Windows 98*)*]
+Parent="Opera 9.0"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.0*(*Windows NT 4.0*)*]
+Parent="Opera 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.0*(*Windows XP*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.0*(*Windows NT 5.1*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.0*(*Windows NT 5.2*)*]
+Parent="Opera 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.0*(*Windows NT 6.0*)*]
+Parent="Opera 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.0*(*Windows NT 6.1*)*]
+Parent="Opera 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.0*(*Windows NT 6.2*)*]
+Parent="Opera 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.0*(*Windows NT 6.3*)*]
+Parent="Opera 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.0*(Nintendo Wii; U; *)]
+Parent="Opera 9.0"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.10
+
+[Opera 9.10]
+Parent="DefaultProperties"
+Comment="Opera 9.10"
+Browser="Opera"
+Version="9.10"
+MajorVer=9
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.10*]
+Parent="Opera 9.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.10*FreeBSD*)*]
+Parent="Opera 9.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Linux*)*]
+Parent="Opera 9.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_4*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.4*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_5*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.5*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_6*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.6*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_7*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.7*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_8*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.8*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_9*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.9*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10_10*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X 10.10*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac OS X*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Mac_PowerPC*)*]
+Parent="Opera 9.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*SunOS*)*]
+Parent="Opera 9.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.10*Windows CE*)*]
+Parent="Opera 9.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 5.0*)*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.10*Windows 2000*)*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.10*Win 9x 4.90*)*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.10*Windows ME*)*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.10*Windows 95*)*]
+Parent="Opera 9.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.10*Windows 98*)*]
+Parent="Opera 9.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 4.0*)*]
+Parent="Opera 9.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.10*Windows XP*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 5.1*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 5.2*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 6.0*)*]
+Parent="Opera 9.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 6.1*)*]
+Parent="Opera 9.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 6.2*)*]
+Parent="Opera 9.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.10*Windows NT 6.3*)*]
+Parent="Opera 9.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.10*(*FreeBSD*)*]
+Parent="Opera 9.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.10*(*Linux*)*]
+Parent="Opera 9.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_4*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.4*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_5*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.5*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_6*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.6*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_7*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.7*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_8*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.8*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_9*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.9*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10_10*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X 10.10*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.10*(*Mac OS X*)*]
+Parent="Opera 9.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.10*(*Mac_PowerPC*)*]
+Parent="Opera 9.10"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.10*(*SunOS*)*]
+Parent="Opera 9.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.10*(*Windows CE*)*]
+Parent="Opera 9.10"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.10*(*Windows NT 5.0*)*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.10*(*Windows 2000*)*]
+Parent="Opera 9.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.10*(*Win 9x 4.90*)*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.10*(*Windows ME*)*]
+Parent="Opera 9.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.10*(*Windows 95*)*]
+Parent="Opera 9.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.10*(*Windows 98*)*]
+Parent="Opera 9.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.10*(*Windows NT 4.0*)*]
+Parent="Opera 9.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.10*(*Windows XP*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.10*(*Windows NT 5.1*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.10*(*Windows NT 5.2*)*]
+Parent="Opera 9.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.10*(*Windows NT 6.0*)*]
+Parent="Opera 9.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.10*(*Windows NT 6.1*)*]
+Parent="Opera 9.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.10*(*Windows NT 6.2*)*]
+Parent="Opera 9.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.10*(*Windows NT 6.3*)*]
+Parent="Opera 9.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.10*(Nintendo Wii; U; *)]
+Parent="Opera 9.10"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.20
+
+[Opera 9.20]
+Parent="DefaultProperties"
+Comment="Opera 9.20"
+Browser="Opera"
+Version="9.20"
+MajorVer=9
+MinorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.20*]
+Parent="Opera 9.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.20*FreeBSD*)*]
+Parent="Opera 9.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Linux*)*]
+Parent="Opera 9.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_4*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.4*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_5*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.5*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_6*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.6*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_7*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.7*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_8*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.8*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_9*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.9*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10_10*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X 10.10*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac OS X*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Mac_PowerPC*)*]
+Parent="Opera 9.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*SunOS*)*]
+Parent="Opera 9.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.20*Windows CE*)*]
+Parent="Opera 9.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 5.0*)*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.20*Windows 2000*)*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.20*Win 9x 4.90*)*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.20*Windows ME*)*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.20*Windows 95*)*]
+Parent="Opera 9.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.20*Windows 98*)*]
+Parent="Opera 9.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 4.0*)*]
+Parent="Opera 9.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.20*Windows XP*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 5.1*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 5.2*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 6.0*)*]
+Parent="Opera 9.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 6.1*)*]
+Parent="Opera 9.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 6.2*)*]
+Parent="Opera 9.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.20*Windows NT 6.3*)*]
+Parent="Opera 9.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.20*(*FreeBSD*)*]
+Parent="Opera 9.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.20*(*Linux*)*]
+Parent="Opera 9.20"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_4*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.4*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_5*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.5*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_6*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.6*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_7*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.7*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_8*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.8*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_9*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.9*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10_10*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X 10.10*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.20*(*Mac OS X*)*]
+Parent="Opera 9.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.20*(*Mac_PowerPC*)*]
+Parent="Opera 9.20"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.20*(*SunOS*)*]
+Parent="Opera 9.20"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.20*(*Windows CE*)*]
+Parent="Opera 9.20"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.20*(*Windows NT 5.0*)*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.20*(*Windows 2000*)*]
+Parent="Opera 9.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.20*(*Win 9x 4.90*)*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.20*(*Windows ME*)*]
+Parent="Opera 9.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.20*(*Windows 95*)*]
+Parent="Opera 9.20"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.20*(*Windows 98*)*]
+Parent="Opera 9.20"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.20*(*Windows NT 4.0*)*]
+Parent="Opera 9.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.20*(*Windows XP*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.20*(*Windows NT 5.1*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.20*(*Windows NT 5.2*)*]
+Parent="Opera 9.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.20*(*Windows NT 6.0*)*]
+Parent="Opera 9.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.20*(*Windows NT 6.1*)*]
+Parent="Opera 9.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.20*(*Windows NT 6.2*)*]
+Parent="Opera 9.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.20*(*Windows NT 6.3*)*]
+Parent="Opera 9.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.20*(Nintendo Wii; U; *)]
+Parent="Opera 9.20"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.21
+
+[Opera 9.21]
+Parent="DefaultProperties"
+Comment="Opera 9.21"
+Browser="Opera"
+Version="9.21"
+MajorVer=9
+MinorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.21*]
+Parent="Opera 9.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.21*FreeBSD*)*]
+Parent="Opera 9.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Linux*)*]
+Parent="Opera 9.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_4*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.4*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_5*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.5*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_6*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.6*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_7*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.7*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_8*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.8*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_9*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.9*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10_10*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X 10.10*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac OS X*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Mac_PowerPC*)*]
+Parent="Opera 9.21"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*SunOS*)*]
+Parent="Opera 9.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.21*Windows CE*)*]
+Parent="Opera 9.21"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 5.0*)*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.21*Windows 2000*)*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.21*Win 9x 4.90*)*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.21*Windows ME*)*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.21*Windows 95*)*]
+Parent="Opera 9.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.21*Windows 98*)*]
+Parent="Opera 9.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 4.0*)*]
+Parent="Opera 9.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.21*Windows XP*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 5.1*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 5.2*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 6.0*)*]
+Parent="Opera 9.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 6.1*)*]
+Parent="Opera 9.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 6.2*)*]
+Parent="Opera 9.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.21*Windows NT 6.3*)*]
+Parent="Opera 9.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.21*(*FreeBSD*)*]
+Parent="Opera 9.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.21*(*Linux*)*]
+Parent="Opera 9.21"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_4*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.4*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_5*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.5*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_6*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.6*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_7*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.7*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_8*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.8*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_9*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.9*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10_10*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X 10.10*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.21*(*Mac OS X*)*]
+Parent="Opera 9.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.21*(*Mac_PowerPC*)*]
+Parent="Opera 9.21"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.21*(*SunOS*)*]
+Parent="Opera 9.21"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.21*(*Windows CE*)*]
+Parent="Opera 9.21"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.21*(*Windows NT 5.0*)*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.21*(*Windows 2000*)*]
+Parent="Opera 9.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.21*(*Win 9x 4.90*)*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.21*(*Windows ME*)*]
+Parent="Opera 9.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.21*(*Windows 95*)*]
+Parent="Opera 9.21"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.21*(*Windows 98*)*]
+Parent="Opera 9.21"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.21*(*Windows NT 4.0*)*]
+Parent="Opera 9.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.21*(*Windows XP*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.21*(*Windows NT 5.1*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.21*(*Windows NT 5.2*)*]
+Parent="Opera 9.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.21*(*Windows NT 6.0*)*]
+Parent="Opera 9.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.21*(*Windows NT 6.1*)*]
+Parent="Opera 9.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.21*(*Windows NT 6.2*)*]
+Parent="Opera 9.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.21*(*Windows NT 6.3*)*]
+Parent="Opera 9.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.21*(Nintendo Wii; U; *)]
+Parent="Opera 9.21"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.22
+
+[Opera 9.22]
+Parent="DefaultProperties"
+Comment="Opera 9.22"
+Browser="Opera"
+Version="9.22"
+MajorVer=9
+MinorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.22*]
+Parent="Opera 9.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.22*FreeBSD*)*]
+Parent="Opera 9.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Linux*)*]
+Parent="Opera 9.22"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_4*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.4*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_5*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.5*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_6*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.6*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_7*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.7*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_8*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.8*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_9*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.9*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10_10*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X 10.10*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac OS X*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Mac_PowerPC*)*]
+Parent="Opera 9.22"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*SunOS*)*]
+Parent="Opera 9.22"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.22*Windows CE*)*]
+Parent="Opera 9.22"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 5.0*)*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.22*Windows 2000*)*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.22*Win 9x 4.90*)*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.22*Windows ME*)*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.22*Windows 95*)*]
+Parent="Opera 9.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.22*Windows 98*)*]
+Parent="Opera 9.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 4.0*)*]
+Parent="Opera 9.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.22*Windows XP*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 5.1*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 5.2*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 6.0*)*]
+Parent="Opera 9.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 6.1*)*]
+Parent="Opera 9.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 6.2*)*]
+Parent="Opera 9.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.22*Windows NT 6.3*)*]
+Parent="Opera 9.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.22*(*FreeBSD*)*]
+Parent="Opera 9.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.22*(*Linux*)*]
+Parent="Opera 9.22"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_4*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.4*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_5*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.5*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_6*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.6*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_7*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.7*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_8*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.8*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_9*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.9*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10_10*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X 10.10*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.22*(*Mac OS X*)*]
+Parent="Opera 9.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.22*(*Mac_PowerPC*)*]
+Parent="Opera 9.22"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.22*(*SunOS*)*]
+Parent="Opera 9.22"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.22*(*Windows CE*)*]
+Parent="Opera 9.22"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.22*(*Windows NT 5.0*)*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.22*(*Windows 2000*)*]
+Parent="Opera 9.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.22*(*Win 9x 4.90*)*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.22*(*Windows ME*)*]
+Parent="Opera 9.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.22*(*Windows 95*)*]
+Parent="Opera 9.22"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.22*(*Windows 98*)*]
+Parent="Opera 9.22"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.22*(*Windows NT 4.0*)*]
+Parent="Opera 9.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.22*(*Windows XP*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.22*(*Windows NT 5.1*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.22*(*Windows NT 5.2*)*]
+Parent="Opera 9.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.22*(*Windows NT 6.0*)*]
+Parent="Opera 9.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.22*(*Windows NT 6.1*)*]
+Parent="Opera 9.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.22*(*Windows NT 6.2*)*]
+Parent="Opera 9.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.22*(*Windows NT 6.3*)*]
+Parent="Opera 9.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.22*(Nintendo Wii; U; *)]
+Parent="Opera 9.22"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.23
+
+[Opera 9.23]
+Parent="DefaultProperties"
+Comment="Opera 9.23"
+Browser="Opera"
+Version="9.23"
+MajorVer=9
+MinorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.23*]
+Parent="Opera 9.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.23*FreeBSD*)*]
+Parent="Opera 9.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Linux*)*]
+Parent="Opera 9.23"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_4*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.4*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_5*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.5*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_6*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.6*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_7*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.7*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_8*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.8*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_9*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.9*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10_10*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X 10.10*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac OS X*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Mac_PowerPC*)*]
+Parent="Opera 9.23"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*SunOS*)*]
+Parent="Opera 9.23"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.23*Windows CE*)*]
+Parent="Opera 9.23"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 5.0*)*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.23*Windows 2000*)*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.23*Win 9x 4.90*)*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.23*Windows ME*)*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.23*Windows 95*)*]
+Parent="Opera 9.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.23*Windows 98*)*]
+Parent="Opera 9.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 4.0*)*]
+Parent="Opera 9.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.23*Windows XP*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 5.1*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 5.2*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 6.0*)*]
+Parent="Opera 9.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 6.1*)*]
+Parent="Opera 9.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 6.2*)*]
+Parent="Opera 9.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.23*Windows NT 6.3*)*]
+Parent="Opera 9.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.23*(*FreeBSD*)*]
+Parent="Opera 9.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.23*(*Linux*)*]
+Parent="Opera 9.23"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_4*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.4*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_5*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.5*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_6*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.6*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_7*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.7*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_8*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.8*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_9*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.9*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10_10*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X 10.10*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.23*(*Mac OS X*)*]
+Parent="Opera 9.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.23*(*Mac_PowerPC*)*]
+Parent="Opera 9.23"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.23*(*SunOS*)*]
+Parent="Opera 9.23"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.23*(*Windows CE*)*]
+Parent="Opera 9.23"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.23*(*Windows NT 5.0*)*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.23*(*Windows 2000*)*]
+Parent="Opera 9.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.23*(*Win 9x 4.90*)*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.23*(*Windows ME*)*]
+Parent="Opera 9.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.23*(*Windows 95*)*]
+Parent="Opera 9.23"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.23*(*Windows 98*)*]
+Parent="Opera 9.23"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.23*(*Windows NT 4.0*)*]
+Parent="Opera 9.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.23*(*Windows XP*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.23*(*Windows NT 5.1*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.23*(*Windows NT 5.2*)*]
+Parent="Opera 9.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.23*(*Windows NT 6.0*)*]
+Parent="Opera 9.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.23*(*Windows NT 6.1*)*]
+Parent="Opera 9.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.23*(*Windows NT 6.2*)*]
+Parent="Opera 9.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.23*(*Windows NT 6.3*)*]
+Parent="Opera 9.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.23*(Nintendo Wii; U; *)]
+Parent="Opera 9.23"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.24
+
+[Opera 9.24]
+Parent="DefaultProperties"
+Comment="Opera 9.24"
+Browser="Opera"
+Version="9.24"
+MajorVer=9
+MinorVer=24
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.24*]
+Parent="Opera 9.24"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.24*FreeBSD*)*]
+Parent="Opera 9.24"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Linux*)*]
+Parent="Opera 9.24"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_4*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.4*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_5*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.5*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_6*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.6*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_7*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.7*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_8*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.8*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_9*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.9*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10_10*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X 10.10*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac OS X*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Mac_PowerPC*)*]
+Parent="Opera 9.24"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*SunOS*)*]
+Parent="Opera 9.24"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.24*Windows CE*)*]
+Parent="Opera 9.24"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 5.0*)*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.24*Windows 2000*)*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.24*Win 9x 4.90*)*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.24*Windows ME*)*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.24*Windows 95*)*]
+Parent="Opera 9.24"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.24*Windows 98*)*]
+Parent="Opera 9.24"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 4.0*)*]
+Parent="Opera 9.24"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.24*Windows XP*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 5.1*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 5.2*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 6.0*)*]
+Parent="Opera 9.24"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 6.1*)*]
+Parent="Opera 9.24"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 6.2*)*]
+Parent="Opera 9.24"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.24*Windows NT 6.3*)*]
+Parent="Opera 9.24"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.24*(*FreeBSD*)*]
+Parent="Opera 9.24"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.24*(*Linux*)*]
+Parent="Opera 9.24"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_4*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.4*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_5*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.5*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_6*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.6*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_7*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.7*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_8*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.8*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_9*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.9*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10_10*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X 10.10*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.24*(*Mac OS X*)*]
+Parent="Opera 9.24"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.24*(*Mac_PowerPC*)*]
+Parent="Opera 9.24"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.24*(*SunOS*)*]
+Parent="Opera 9.24"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.24*(*Windows CE*)*]
+Parent="Opera 9.24"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.24*(*Windows NT 5.0*)*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.24*(*Windows 2000*)*]
+Parent="Opera 9.24"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.24*(*Win 9x 4.90*)*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.24*(*Windows ME*)*]
+Parent="Opera 9.24"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.24*(*Windows 95*)*]
+Parent="Opera 9.24"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.24*(*Windows 98*)*]
+Parent="Opera 9.24"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.24*(*Windows NT 4.0*)*]
+Parent="Opera 9.24"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.24*(*Windows XP*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.24*(*Windows NT 5.1*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.24*(*Windows NT 5.2*)*]
+Parent="Opera 9.24"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.24*(*Windows NT 6.0*)*]
+Parent="Opera 9.24"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.24*(*Windows NT 6.1*)*]
+Parent="Opera 9.24"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.24*(*Windows NT 6.2*)*]
+Parent="Opera 9.24"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.24*(*Windows NT 6.3*)*]
+Parent="Opera 9.24"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.24*(Nintendo Wii; U; *)]
+Parent="Opera 9.24"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.25
+
+[Opera 9.25]
+Parent="DefaultProperties"
+Comment="Opera 9.25"
+Browser="Opera"
+Version="9.25"
+MajorVer=9
+MinorVer=25
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.25*]
+Parent="Opera 9.25"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.25*FreeBSD*)*]
+Parent="Opera 9.25"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Linux*)*]
+Parent="Opera 9.25"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_4*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.4*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_5*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.5*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_6*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.6*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_7*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.7*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_8*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.8*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_9*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.9*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10_10*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X 10.10*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac OS X*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Mac_PowerPC*)*]
+Parent="Opera 9.25"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*SunOS*)*]
+Parent="Opera 9.25"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.25*Windows CE*)*]
+Parent="Opera 9.25"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 5.0*)*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.25*Windows 2000*)*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.25*Win 9x 4.90*)*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.25*Windows ME*)*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.25*Windows 95*)*]
+Parent="Opera 9.25"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.25*Windows 98*)*]
+Parent="Opera 9.25"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 4.0*)*]
+Parent="Opera 9.25"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.25*Windows XP*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 5.1*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 5.2*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 6.0*)*]
+Parent="Opera 9.25"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 6.1*)*]
+Parent="Opera 9.25"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 6.2*)*]
+Parent="Opera 9.25"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.25*Windows NT 6.3*)*]
+Parent="Opera 9.25"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.25*(*FreeBSD*)*]
+Parent="Opera 9.25"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.25*(*Linux*)*]
+Parent="Opera 9.25"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_4*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.4*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_5*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.5*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_6*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.6*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_7*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.7*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_8*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.8*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_9*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.9*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10_10*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X 10.10*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.25*(*Mac OS X*)*]
+Parent="Opera 9.25"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.25*(*Mac_PowerPC*)*]
+Parent="Opera 9.25"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.25*(*SunOS*)*]
+Parent="Opera 9.25"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.25*(*Windows CE*)*]
+Parent="Opera 9.25"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.25*(*Windows NT 5.0*)*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.25*(*Windows 2000*)*]
+Parent="Opera 9.25"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.25*(*Win 9x 4.90*)*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.25*(*Windows ME*)*]
+Parent="Opera 9.25"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.25*(*Windows 95*)*]
+Parent="Opera 9.25"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.25*(*Windows 98*)*]
+Parent="Opera 9.25"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.25*(*Windows NT 4.0*)*]
+Parent="Opera 9.25"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.25*(*Windows XP*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.25*(*Windows NT 5.1*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.25*(*Windows NT 5.2*)*]
+Parent="Opera 9.25"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.25*(*Windows NT 6.0*)*]
+Parent="Opera 9.25"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.25*(*Windows NT 6.1*)*]
+Parent="Opera 9.25"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.25*(*Windows NT 6.2*)*]
+Parent="Opera 9.25"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.25*(*Windows NT 6.3*)*]
+Parent="Opera 9.25"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.25*(Nintendo Wii; U; *)]
+Parent="Opera 9.25"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.26
+
+[Opera 9.26]
+Parent="DefaultProperties"
+Comment="Opera 9.26"
+Browser="Opera"
+Version="9.26"
+MajorVer=9
+MinorVer=26
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.26*]
+Parent="Opera 9.26"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.26*FreeBSD*)*]
+Parent="Opera 9.26"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Linux*)*]
+Parent="Opera 9.26"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_4*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.4*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_5*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.5*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_6*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.6*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_7*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.7*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_8*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.8*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_9*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.9*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10_10*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X 10.10*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac OS X*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Mac_PowerPC*)*]
+Parent="Opera 9.26"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*SunOS*)*]
+Parent="Opera 9.26"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.26*Windows CE*)*]
+Parent="Opera 9.26"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 5.0*)*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.26*Windows 2000*)*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.26*Win 9x 4.90*)*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.26*Windows ME*)*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.26*Windows 95*)*]
+Parent="Opera 9.26"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.26*Windows 98*)*]
+Parent="Opera 9.26"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 4.0*)*]
+Parent="Opera 9.26"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.26*Windows XP*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 5.1*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 5.2*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 6.0*)*]
+Parent="Opera 9.26"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 6.1*)*]
+Parent="Opera 9.26"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 6.2*)*]
+Parent="Opera 9.26"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.26*Windows NT 6.3*)*]
+Parent="Opera 9.26"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.26*(*FreeBSD*)*]
+Parent="Opera 9.26"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.26*(*Linux*)*]
+Parent="Opera 9.26"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_4*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.4*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_5*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.5*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_6*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.6*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_7*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.7*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_8*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.8*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_9*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.9*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10_10*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X 10.10*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.26*(*Mac OS X*)*]
+Parent="Opera 9.26"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.26*(*Mac_PowerPC*)*]
+Parent="Opera 9.26"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.26*(*SunOS*)*]
+Parent="Opera 9.26"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.26*(*Windows CE*)*]
+Parent="Opera 9.26"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.26*(*Windows NT 5.0*)*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.26*(*Windows 2000*)*]
+Parent="Opera 9.26"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.26*(*Win 9x 4.90*)*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.26*(*Windows ME*)*]
+Parent="Opera 9.26"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.26*(*Windows 95*)*]
+Parent="Opera 9.26"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.26*(*Windows 98*)*]
+Parent="Opera 9.26"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.26*(*Windows NT 4.0*)*]
+Parent="Opera 9.26"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.26*(*Windows XP*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.26*(*Windows NT 5.1*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.26*(*Windows NT 5.2*)*]
+Parent="Opera 9.26"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.26*(*Windows NT 6.0*)*]
+Parent="Opera 9.26"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.26*(*Windows NT 6.1*)*]
+Parent="Opera 9.26"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.26*(*Windows NT 6.2*)*]
+Parent="Opera 9.26"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.26*(*Windows NT 6.3*)*]
+Parent="Opera 9.26"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.26*(Nintendo Wii; U; *)]
+Parent="Opera 9.26"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.27
+
+[Opera 9.27]
+Parent="DefaultProperties"
+Comment="Opera 9.27"
+Browser="Opera"
+Version="9.27"
+MajorVer=9
+MinorVer=27
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.27*]
+Parent="Opera 9.27"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.27*FreeBSD*)*]
+Parent="Opera 9.27"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Linux*)*]
+Parent="Opera 9.27"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_4*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.4*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_5*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.5*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_6*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.6*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_7*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.7*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_8*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.8*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_9*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.9*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10_10*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X 10.10*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac OS X*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Mac_PowerPC*)*]
+Parent="Opera 9.27"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*SunOS*)*]
+Parent="Opera 9.27"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.27*Windows CE*)*]
+Parent="Opera 9.27"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 5.0*)*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.27*Windows 2000*)*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.27*Win 9x 4.90*)*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.27*Windows ME*)*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.27*Windows 95*)*]
+Parent="Opera 9.27"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.27*Windows 98*)*]
+Parent="Opera 9.27"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 4.0*)*]
+Parent="Opera 9.27"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.27*Windows XP*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 5.1*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 5.2*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 6.0*)*]
+Parent="Opera 9.27"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 6.1*)*]
+Parent="Opera 9.27"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 6.2*)*]
+Parent="Opera 9.27"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.27*Windows NT 6.3*)*]
+Parent="Opera 9.27"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.27*(*FreeBSD*)*]
+Parent="Opera 9.27"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.27*(*Linux*)*]
+Parent="Opera 9.27"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_4*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.4*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_5*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.5*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_6*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.6*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_7*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.7*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_8*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.8*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_9*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.9*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10_10*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X 10.10*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.27*(*Mac OS X*)*]
+Parent="Opera 9.27"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.27*(*Mac_PowerPC*)*]
+Parent="Opera 9.27"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.27*(*SunOS*)*]
+Parent="Opera 9.27"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.27*(*Windows CE*)*]
+Parent="Opera 9.27"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.27*(*Windows NT 5.0*)*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.27*(*Windows 2000*)*]
+Parent="Opera 9.27"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.27*(*Win 9x 4.90*)*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.27*(*Windows ME*)*]
+Parent="Opera 9.27"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.27*(*Windows 95*)*]
+Parent="Opera 9.27"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.27*(*Windows 98*)*]
+Parent="Opera 9.27"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.27*(*Windows NT 4.0*)*]
+Parent="Opera 9.27"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.27*(*Windows XP*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.27*(*Windows NT 5.1*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.27*(*Windows NT 5.2*)*]
+Parent="Opera 9.27"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.27*(*Windows NT 6.0*)*]
+Parent="Opera 9.27"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.27*(*Windows NT 6.1*)*]
+Parent="Opera 9.27"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.27*(*Windows NT 6.2*)*]
+Parent="Opera 9.27"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.27*(*Windows NT 6.3*)*]
+Parent="Opera 9.27"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.27*(Nintendo Wii; U; *)]
+Parent="Opera 9.27"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.30
+
+[Opera 9.30]
+Parent="DefaultProperties"
+Comment="Opera 9.30"
+Browser="Opera"
+Version="9.30"
+MajorVer=9
+MinorVer=30
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.30*]
+Parent="Opera 9.30"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.30*FreeBSD*)*]
+Parent="Opera 9.30"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Linux*)*]
+Parent="Opera 9.30"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_4*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.4*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_5*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.5*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_6*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.6*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_7*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.7*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_8*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.8*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_9*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.9*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10_10*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X 10.10*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac OS X*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Mac_PowerPC*)*]
+Parent="Opera 9.30"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*SunOS*)*]
+Parent="Opera 9.30"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.30*Windows CE*)*]
+Parent="Opera 9.30"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 5.0*)*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.30*Windows 2000*)*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.30*Win 9x 4.90*)*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.30*Windows ME*)*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.30*Windows 95*)*]
+Parent="Opera 9.30"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.30*Windows 98*)*]
+Parent="Opera 9.30"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 4.0*)*]
+Parent="Opera 9.30"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.30*Windows XP*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 5.1*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 5.2*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 6.0*)*]
+Parent="Opera 9.30"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 6.1*)*]
+Parent="Opera 9.30"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 6.2*)*]
+Parent="Opera 9.30"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.30*Windows NT 6.3*)*]
+Parent="Opera 9.30"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.30*(*FreeBSD*)*]
+Parent="Opera 9.30"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.30*(*Linux*)*]
+Parent="Opera 9.30"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_4*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.4*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_5*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.5*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_6*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.6*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_7*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.7*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_8*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.8*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_9*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.9*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10_10*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X 10.10*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.30*(*Mac OS X*)*]
+Parent="Opera 9.30"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.30*(*Mac_PowerPC*)*]
+Parent="Opera 9.30"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.30*(*SunOS*)*]
+Parent="Opera 9.30"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.30*(*Windows CE*)*]
+Parent="Opera 9.30"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.30*(*Windows NT 5.0*)*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.30*(*Windows 2000*)*]
+Parent="Opera 9.30"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.30*(*Win 9x 4.90*)*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.30*(*Windows ME*)*]
+Parent="Opera 9.30"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.30*(*Windows 95*)*]
+Parent="Opera 9.30"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.30*(*Windows 98*)*]
+Parent="Opera 9.30"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.30*(*Windows NT 4.0*)*]
+Parent="Opera 9.30"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.30*(*Windows XP*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.30*(*Windows NT 5.1*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.30*(*Windows NT 5.2*)*]
+Parent="Opera 9.30"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.30*(*Windows NT 6.0*)*]
+Parent="Opera 9.30"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.30*(*Windows NT 6.1*)*]
+Parent="Opera 9.30"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.30*(*Windows NT 6.2*)*]
+Parent="Opera 9.30"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.30*(*Windows NT 6.3*)*]
+Parent="Opera 9.30"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.30*(Nintendo Wii; U; *)]
+Parent="Opera 9.30"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.50
+
+[Opera 9.50]
+Parent="DefaultProperties"
+Comment="Opera 9.50"
+Browser="Opera"
+Version="9.50"
+MajorVer=9
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.50*]
+Parent="Opera 9.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.50*FreeBSD*)*]
+Parent="Opera 9.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Linux*)*]
+Parent="Opera 9.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_4*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.4*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_5*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.5*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_6*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.6*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_7*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.7*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_8*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.8*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_9*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.9*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10_10*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X 10.10*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac OS X*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Mac_PowerPC*)*]
+Parent="Opera 9.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*SunOS*)*]
+Parent="Opera 9.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.50*Windows CE*)*]
+Parent="Opera 9.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 5.0*)*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.50*Windows 2000*)*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.50*Win 9x 4.90*)*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.50*Windows ME*)*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.50*Windows 95*)*]
+Parent="Opera 9.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.50*Windows 98*)*]
+Parent="Opera 9.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 4.0*)*]
+Parent="Opera 9.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.50*Windows XP*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 5.1*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 5.2*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 6.0*)*]
+Parent="Opera 9.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 6.1*)*]
+Parent="Opera 9.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 6.2*)*]
+Parent="Opera 9.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.50*Windows NT 6.3*)*]
+Parent="Opera 9.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.50*(*FreeBSD*)*]
+Parent="Opera 9.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.50*(*Linux*)*]
+Parent="Opera 9.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_4*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.4*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_5*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.5*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_6*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.6*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_7*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.7*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_8*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.8*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_9*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.9*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10_10*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X 10.10*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.50*(*Mac OS X*)*]
+Parent="Opera 9.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.50*(*Mac_PowerPC*)*]
+Parent="Opera 9.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.50*(*SunOS*)*]
+Parent="Opera 9.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.50*(*Windows CE*)*]
+Parent="Opera 9.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.50*(*Windows NT 5.0*)*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.50*(*Windows 2000*)*]
+Parent="Opera 9.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.50*(*Win 9x 4.90*)*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.50*(*Windows ME*)*]
+Parent="Opera 9.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.50*(*Windows 95*)*]
+Parent="Opera 9.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.50*(*Windows 98*)*]
+Parent="Opera 9.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.50*(*Windows NT 4.0*)*]
+Parent="Opera 9.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.50*(*Windows XP*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.50*(*Windows NT 5.1*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.50*(*Windows NT 5.2*)*]
+Parent="Opera 9.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.50*(*Windows NT 6.0*)*]
+Parent="Opera 9.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.50*(*Windows NT 6.1*)*]
+Parent="Opera 9.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.50*(*Windows NT 6.2*)*]
+Parent="Opera 9.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.50*(*Windows NT 6.3*)*]
+Parent="Opera 9.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.50*(Nintendo Wii; U; *)]
+Parent="Opera 9.50"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.51
+
+[Opera 9.51]
+Parent="DefaultProperties"
+Comment="Opera 9.51"
+Browser="Opera"
+Version="9.51"
+MajorVer=9
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.51*]
+Parent="Opera 9.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.51*FreeBSD*)*]
+Parent="Opera 9.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Linux*)*]
+Parent="Opera 9.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_4*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.4*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_5*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.5*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_6*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.6*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_7*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.7*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_8*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.8*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_9*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.9*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10_10*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X 10.10*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac OS X*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Mac_PowerPC*)*]
+Parent="Opera 9.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*SunOS*)*]
+Parent="Opera 9.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.51*Windows CE*)*]
+Parent="Opera 9.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 5.0*)*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.51*Windows 2000*)*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.51*Win 9x 4.90*)*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.51*Windows ME*)*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.51*Windows 95*)*]
+Parent="Opera 9.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.51*Windows 98*)*]
+Parent="Opera 9.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 4.0*)*]
+Parent="Opera 9.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.51*Windows XP*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 5.1*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 5.2*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 6.0*)*]
+Parent="Opera 9.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 6.1*)*]
+Parent="Opera 9.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 6.2*)*]
+Parent="Opera 9.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.51*Windows NT 6.3*)*]
+Parent="Opera 9.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.51*(*FreeBSD*)*]
+Parent="Opera 9.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.51*(*Linux*)*]
+Parent="Opera 9.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_4*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.4*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_5*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.5*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_6*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.6*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_7*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.7*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_8*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.8*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_9*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.9*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10_10*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X 10.10*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.51*(*Mac OS X*)*]
+Parent="Opera 9.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.51*(*Mac_PowerPC*)*]
+Parent="Opera 9.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.51*(*SunOS*)*]
+Parent="Opera 9.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.51*(*Windows CE*)*]
+Parent="Opera 9.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.51*(*Windows NT 5.0*)*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.51*(*Windows 2000*)*]
+Parent="Opera 9.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.51*(*Win 9x 4.90*)*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.51*(*Windows ME*)*]
+Parent="Opera 9.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.51*(*Windows 95*)*]
+Parent="Opera 9.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.51*(*Windows 98*)*]
+Parent="Opera 9.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.51*(*Windows NT 4.0*)*]
+Parent="Opera 9.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.51*(*Windows XP*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.51*(*Windows NT 5.1*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.51*(*Windows NT 5.2*)*]
+Parent="Opera 9.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.51*(*Windows NT 6.0*)*]
+Parent="Opera 9.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.51*(*Windows NT 6.1*)*]
+Parent="Opera 9.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.51*(*Windows NT 6.2*)*]
+Parent="Opera 9.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.51*(*Windows NT 6.3*)*]
+Parent="Opera 9.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.51*(Nintendo Wii; U; *)]
+Parent="Opera 9.51"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.52
+
+[Opera 9.52]
+Parent="DefaultProperties"
+Comment="Opera 9.52"
+Browser="Opera"
+Version="9.52"
+MajorVer=9
+MinorVer=52
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.52*]
+Parent="Opera 9.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.52*FreeBSD*)*]
+Parent="Opera 9.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Linux*)*]
+Parent="Opera 9.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_4*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.4*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_5*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.5*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_6*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.6*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_7*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.7*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_8*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.8*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_9*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.9*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10_10*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X 10.10*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac OS X*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Mac_PowerPC*)*]
+Parent="Opera 9.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*SunOS*)*]
+Parent="Opera 9.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.52*Windows CE*)*]
+Parent="Opera 9.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 5.0*)*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.52*Windows 2000*)*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.52*Win 9x 4.90*)*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.52*Windows ME*)*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.52*Windows 95*)*]
+Parent="Opera 9.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.52*Windows 98*)*]
+Parent="Opera 9.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 4.0*)*]
+Parent="Opera 9.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.52*Windows XP*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 5.1*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 5.2*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 6.0*)*]
+Parent="Opera 9.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 6.1*)*]
+Parent="Opera 9.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 6.2*)*]
+Parent="Opera 9.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.52*Windows NT 6.3*)*]
+Parent="Opera 9.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.52*(*FreeBSD*)*]
+Parent="Opera 9.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.52*(*Linux*)*]
+Parent="Opera 9.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_4*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.4*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_5*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.5*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_6*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.6*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_7*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.7*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_8*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.8*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_9*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.9*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10_10*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X 10.10*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.52*(*Mac OS X*)*]
+Parent="Opera 9.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.52*(*Mac_PowerPC*)*]
+Parent="Opera 9.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.52*(*SunOS*)*]
+Parent="Opera 9.52"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.52*(*Windows CE*)*]
+Parent="Opera 9.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.52*(*Windows NT 5.0*)*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.52*(*Windows 2000*)*]
+Parent="Opera 9.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.52*(*Win 9x 4.90*)*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.52*(*Windows ME*)*]
+Parent="Opera 9.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.52*(*Windows 95*)*]
+Parent="Opera 9.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.52*(*Windows 98*)*]
+Parent="Opera 9.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.52*(*Windows NT 4.0*)*]
+Parent="Opera 9.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.52*(*Windows XP*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.52*(*Windows NT 5.1*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.52*(*Windows NT 5.2*)*]
+Parent="Opera 9.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.52*(*Windows NT 6.0*)*]
+Parent="Opera 9.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.52*(*Windows NT 6.1*)*]
+Parent="Opera 9.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.52*(*Windows NT 6.2*)*]
+Parent="Opera 9.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.52*(*Windows NT 6.3*)*]
+Parent="Opera 9.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.52*(Nintendo Wii; U; *)]
+Parent="Opera 9.52"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.60
+
+[Opera 9.60]
+Parent="DefaultProperties"
+Comment="Opera 9.60"
+Browser="Opera"
+Version="9.60"
+MajorVer=9
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.60*]
+Parent="Opera 9.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.60*FreeBSD*)*]
+Parent="Opera 9.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Linux*)*]
+Parent="Opera 9.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_4*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.4*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_5*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.5*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_6*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.6*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_7*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.7*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_8*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.8*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_9*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.9*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10_10*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X 10.10*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac OS X*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Mac_PowerPC*)*]
+Parent="Opera 9.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*SunOS*)*]
+Parent="Opera 9.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.60*Windows CE*)*]
+Parent="Opera 9.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 5.0*)*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.60*Windows 2000*)*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.60*Win 9x 4.90*)*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.60*Windows ME*)*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.60*Windows 95*)*]
+Parent="Opera 9.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.60*Windows 98*)*]
+Parent="Opera 9.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 4.0*)*]
+Parent="Opera 9.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.60*Windows XP*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 5.1*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 5.2*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 6.0*)*]
+Parent="Opera 9.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 6.1*)*]
+Parent="Opera 9.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 6.2*)*]
+Parent="Opera 9.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.60*Windows NT 6.3*)*]
+Parent="Opera 9.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.60*(*FreeBSD*)*]
+Parent="Opera 9.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.60*(*Linux*)*]
+Parent="Opera 9.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_4*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.4*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_5*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.5*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_6*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.6*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_7*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.7*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_8*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.8*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_9*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.9*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10_10*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X 10.10*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.60*(*Mac OS X*)*]
+Parent="Opera 9.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.60*(*Mac_PowerPC*)*]
+Parent="Opera 9.60"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.60*(*SunOS*)*]
+Parent="Opera 9.60"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.60*(*Windows CE*)*]
+Parent="Opera 9.60"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.60*(*Windows NT 5.0*)*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.60*(*Windows 2000*)*]
+Parent="Opera 9.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.60*(*Win 9x 4.90*)*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.60*(*Windows ME*)*]
+Parent="Opera 9.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.60*(*Windows 95*)*]
+Parent="Opera 9.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.60*(*Windows 98*)*]
+Parent="Opera 9.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.60*(*Windows NT 4.0*)*]
+Parent="Opera 9.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.60*(*Windows XP*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.60*(*Windows NT 5.1*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.60*(*Windows NT 5.2*)*]
+Parent="Opera 9.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.60*(*Windows NT 6.0*)*]
+Parent="Opera 9.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.60*(*Windows NT 6.1*)*]
+Parent="Opera 9.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.60*(*Windows NT 6.2*)*]
+Parent="Opera 9.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.60*(*Windows NT 6.3*)*]
+Parent="Opera 9.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.60*(Nintendo Wii; U; *)]
+Parent="Opera 9.60"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.61
+
+[Opera 9.61]
+Parent="DefaultProperties"
+Comment="Opera 9.61"
+Browser="Opera"
+Version="9.61"
+MajorVer=9
+MinorVer=61
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.61*]
+Parent="Opera 9.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.61*FreeBSD*)*]
+Parent="Opera 9.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Linux*)*]
+Parent="Opera 9.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_4*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.4*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_5*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.5*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_6*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.6*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_7*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.7*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_8*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.8*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_9*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.9*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10_10*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X 10.10*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac OS X*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Mac_PowerPC*)*]
+Parent="Opera 9.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*SunOS*)*]
+Parent="Opera 9.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.61*Windows CE*)*]
+Parent="Opera 9.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 5.0*)*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.61*Windows 2000*)*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.61*Win 9x 4.90*)*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.61*Windows ME*)*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.61*Windows 95*)*]
+Parent="Opera 9.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.61*Windows 98*)*]
+Parent="Opera 9.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 4.0*)*]
+Parent="Opera 9.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.61*Windows XP*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 5.1*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 5.2*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 6.0*)*]
+Parent="Opera 9.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 6.1*)*]
+Parent="Opera 9.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 6.2*)*]
+Parent="Opera 9.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.61*Windows NT 6.3*)*]
+Parent="Opera 9.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.61*(*FreeBSD*)*]
+Parent="Opera 9.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.61*(*Linux*)*]
+Parent="Opera 9.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_4*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.4*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_5*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.5*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_6*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.6*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_7*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.7*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_8*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.8*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_9*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.9*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10_10*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X 10.10*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.61*(*Mac OS X*)*]
+Parent="Opera 9.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.61*(*Mac_PowerPC*)*]
+Parent="Opera 9.61"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.61*(*SunOS*)*]
+Parent="Opera 9.61"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.61*(*Windows CE*)*]
+Parent="Opera 9.61"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.61*(*Windows NT 5.0*)*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.61*(*Windows 2000*)*]
+Parent="Opera 9.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.61*(*Win 9x 4.90*)*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.61*(*Windows ME*)*]
+Parent="Opera 9.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.61*(*Windows 95*)*]
+Parent="Opera 9.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.61*(*Windows 98*)*]
+Parent="Opera 9.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.61*(*Windows NT 4.0*)*]
+Parent="Opera 9.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.61*(*Windows XP*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.61*(*Windows NT 5.1*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.61*(*Windows NT 5.2*)*]
+Parent="Opera 9.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.61*(*Windows NT 6.0*)*]
+Parent="Opera 9.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.61*(*Windows NT 6.1*)*]
+Parent="Opera 9.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.61*(*Windows NT 6.2*)*]
+Parent="Opera 9.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.61*(*Windows NT 6.3*)*]
+Parent="Opera 9.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.61*(Nintendo Wii; U; *)]
+Parent="Opera 9.61"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.62
+
+[Opera 9.62]
+Parent="DefaultProperties"
+Comment="Opera 9.62"
+Browser="Opera"
+Version="9.62"
+MajorVer=9
+MinorVer=62
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.62*]
+Parent="Opera 9.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.62*FreeBSD*)*]
+Parent="Opera 9.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Linux*)*]
+Parent="Opera 9.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_4*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.4*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_5*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.5*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_6*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.6*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_7*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.7*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_8*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.8*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_9*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.9*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10_10*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X 10.10*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac OS X*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Mac_PowerPC*)*]
+Parent="Opera 9.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*SunOS*)*]
+Parent="Opera 9.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.62*Windows CE*)*]
+Parent="Opera 9.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 5.0*)*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.62*Windows 2000*)*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.62*Win 9x 4.90*)*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.62*Windows ME*)*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.62*Windows 95*)*]
+Parent="Opera 9.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.62*Windows 98*)*]
+Parent="Opera 9.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 4.0*)*]
+Parent="Opera 9.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.62*Windows XP*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 5.1*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 5.2*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 6.0*)*]
+Parent="Opera 9.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 6.1*)*]
+Parent="Opera 9.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 6.2*)*]
+Parent="Opera 9.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.62*Windows NT 6.3*)*]
+Parent="Opera 9.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.62*(*FreeBSD*)*]
+Parent="Opera 9.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.62*(*Linux*)*]
+Parent="Opera 9.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_4*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.4*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_5*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.5*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_6*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.6*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_7*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.7*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_8*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.8*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_9*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.9*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10_10*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X 10.10*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.62*(*Mac OS X*)*]
+Parent="Opera 9.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.62*(*Mac_PowerPC*)*]
+Parent="Opera 9.62"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.62*(*SunOS*)*]
+Parent="Opera 9.62"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.62*(*Windows CE*)*]
+Parent="Opera 9.62"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.62*(*Windows NT 5.0*)*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.62*(*Windows 2000*)*]
+Parent="Opera 9.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.62*(*Win 9x 4.90*)*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.62*(*Windows ME*)*]
+Parent="Opera 9.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.62*(*Windows 95*)*]
+Parent="Opera 9.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.62*(*Windows 98*)*]
+Parent="Opera 9.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.62*(*Windows NT 4.0*)*]
+Parent="Opera 9.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.62*(*Windows XP*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.62*(*Windows NT 5.1*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.62*(*Windows NT 5.2*)*]
+Parent="Opera 9.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.62*(*Windows NT 6.0*)*]
+Parent="Opera 9.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.62*(*Windows NT 6.1*)*]
+Parent="Opera 9.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.62*(*Windows NT 6.2*)*]
+Parent="Opera 9.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.62*(*Windows NT 6.3*)*]
+Parent="Opera 9.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.62*(Nintendo Wii; U; *)]
+Parent="Opera 9.62"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.63
+
+[Opera 9.63]
+Parent="DefaultProperties"
+Comment="Opera 9.63"
+Browser="Opera"
+Version="9.63"
+MajorVer=9
+MinorVer=63
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.63*]
+Parent="Opera 9.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.63*FreeBSD*)*]
+Parent="Opera 9.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Linux*)*]
+Parent="Opera 9.63"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_4*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.4*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_5*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.5*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_6*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.6*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_7*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.7*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_8*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.8*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_9*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.9*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10_10*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X 10.10*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac OS X*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Mac_PowerPC*)*]
+Parent="Opera 9.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*SunOS*)*]
+Parent="Opera 9.63"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.63*Windows CE*)*]
+Parent="Opera 9.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 5.0*)*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.63*Windows 2000*)*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.63*Win 9x 4.90*)*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.63*Windows ME*)*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.63*Windows 95*)*]
+Parent="Opera 9.63"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.63*Windows 98*)*]
+Parent="Opera 9.63"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 4.0*)*]
+Parent="Opera 9.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.63*Windows XP*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 5.1*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 5.2*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 6.0*)*]
+Parent="Opera 9.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 6.1*)*]
+Parent="Opera 9.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 6.2*)*]
+Parent="Opera 9.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.63*Windows NT 6.3*)*]
+Parent="Opera 9.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.63*(*FreeBSD*)*]
+Parent="Opera 9.63"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.63*(*Linux*)*]
+Parent="Opera 9.63"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_4*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.4*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_5*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.5*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_6*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.6*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_7*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.7*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_8*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.8*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_9*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.9*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10_10*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X 10.10*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.63*(*Mac OS X*)*]
+Parent="Opera 9.63"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.63*(*Mac_PowerPC*)*]
+Parent="Opera 9.63"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.63*(*SunOS*)*]
+Parent="Opera 9.63"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.63*(*Windows CE*)*]
+Parent="Opera 9.63"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.63*(*Windows NT 5.0*)*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.63*(*Windows 2000*)*]
+Parent="Opera 9.63"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.63*(*Win 9x 4.90*)*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.63*(*Windows ME*)*]
+Parent="Opera 9.63"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.63*(*Windows 95*)*]
+Parent="Opera 9.63"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.63*(*Windows 98*)*]
+Parent="Opera 9.63"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.63*(*Windows NT 4.0*)*]
+Parent="Opera 9.63"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.63*(*Windows XP*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.63*(*Windows NT 5.1*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.63*(*Windows NT 5.2*)*]
+Parent="Opera 9.63"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.63*(*Windows NT 6.0*)*]
+Parent="Opera 9.63"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.63*(*Windows NT 6.1*)*]
+Parent="Opera 9.63"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.63*(*Windows NT 6.2*)*]
+Parent="Opera 9.63"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.63*(*Windows NT 6.3*)*]
+Parent="Opera 9.63"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.63*(Nintendo Wii; U; *)]
+Parent="Opera 9.63"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.64
+
+[Opera 9.64]
+Parent="DefaultProperties"
+Comment="Opera 9.64"
+Browser="Opera"
+Version="9.64"
+MajorVer=9
+MinorVer=64
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.64*]
+Parent="Opera 9.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.64*FreeBSD*)*]
+Parent="Opera 9.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Linux*)*]
+Parent="Opera 9.64"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_4*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.4*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_5*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.5*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_6*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.6*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_7*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.7*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_8*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.8*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_9*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.9*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10_10*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X 10.10*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac OS X*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Mac_PowerPC*)*]
+Parent="Opera 9.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*SunOS*)*]
+Parent="Opera 9.64"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.64*Windows CE*)*]
+Parent="Opera 9.64"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 5.0*)*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.64*Windows 2000*)*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.64*Win 9x 4.90*)*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.64*Windows ME*)*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.64*Windows 95*)*]
+Parent="Opera 9.64"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.64*Windows 98*)*]
+Parent="Opera 9.64"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 4.0*)*]
+Parent="Opera 9.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.64*Windows XP*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 5.1*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 5.2*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 6.0*)*]
+Parent="Opera 9.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 6.1*)*]
+Parent="Opera 9.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 6.2*)*]
+Parent="Opera 9.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.64*Windows NT 6.3*)*]
+Parent="Opera 9.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.64*(*FreeBSD*)*]
+Parent="Opera 9.64"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.64*(*Linux*)*]
+Parent="Opera 9.64"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_4*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.4*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_5*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.5*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_6*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.6*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_7*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.7*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_8*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.8*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_9*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.9*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10_10*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X 10.10*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.64*(*Mac OS X*)*]
+Parent="Opera 9.64"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.64*(*Mac_PowerPC*)*]
+Parent="Opera 9.64"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.64*(*SunOS*)*]
+Parent="Opera 9.64"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.64*(*Windows CE*)*]
+Parent="Opera 9.64"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.64*(*Windows NT 5.0*)*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.64*(*Windows 2000*)*]
+Parent="Opera 9.64"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.64*(*Win 9x 4.90*)*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.64*(*Windows ME*)*]
+Parent="Opera 9.64"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.64*(*Windows 95*)*]
+Parent="Opera 9.64"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.64*(*Windows 98*)*]
+Parent="Opera 9.64"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.64*(*Windows NT 4.0*)*]
+Parent="Opera 9.64"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.64*(*Windows XP*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.64*(*Windows NT 5.1*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.64*(*Windows NT 5.2*)*]
+Parent="Opera 9.64"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.64*(*Windows NT 6.0*)*]
+Parent="Opera 9.64"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.64*(*Windows NT 6.1*)*]
+Parent="Opera 9.64"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.64*(*Windows NT 6.2*)*]
+Parent="Opera 9.64"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.64*(*Windows NT 6.3*)*]
+Parent="Opera 9.64"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.64*(Nintendo Wii; U; *)]
+Parent="Opera 9.64"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 9.80
+
+[Opera 9.80]
+Parent="DefaultProperties"
+Comment="Opera 9.80"
+Browser="Opera"
+Version="9.80"
+MajorVer=9
+MinorVer=80
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?9.80*]
+Parent="Opera 9.80"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?9.80*FreeBSD*)*]
+Parent="Opera 9.80"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Linux*)*]
+Parent="Opera 9.80"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_4*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.4*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_5*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.5*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_6*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.6*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_7*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.7*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_8*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.8*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_9*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.9*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10_10*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X 10.10*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac OS X*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Mac_PowerPC*)*]
+Parent="Opera 9.80"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*SunOS*)*]
+Parent="Opera 9.80"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?9.80*Windows CE*)*]
+Parent="Opera 9.80"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 5.0*)*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.80*Windows 2000*)*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?9.80*Win 9x 4.90*)*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.80*Windows ME*)*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?9.80*Windows 95*)*]
+Parent="Opera 9.80"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?9.80*Windows 98*)*]
+Parent="Opera 9.80"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 4.0*)*]
+Parent="Opera 9.80"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?9.80*Windows XP*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 5.1*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 5.2*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 6.0*)*]
+Parent="Opera 9.80"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 6.1*)*]
+Parent="Opera 9.80"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 6.2*)*]
+Parent="Opera 9.80"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?9.80*Windows NT 6.3*)*]
+Parent="Opera 9.80"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*FreeBSD*)*]
+Parent="Opera 9.80"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*]
+Parent="Opera 9.80"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*]
+Parent="Opera 9.80"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*Mac_PowerPC*)*]
+Parent="Opera 9.80"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*]
+Parent="Opera 9.80"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows CE*)*]
+Parent="Opera 9.80"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/9.80*(*Windows NT 5.0*)*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows 2000*)*]
+Parent="Opera 9.80"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows ME*)*]
+Parent="Opera 9.80"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*]
+Parent="Opera 9.80"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*]
+Parent="Opera 9.80"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows NT 4.0*)*]
+Parent="Opera 9.80"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows XP*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.1*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*]
+Parent="Opera 9.80"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*]
+Parent="Opera 9.80"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*]
+Parent="Opera 9.80"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*]
+Parent="Opera 9.80"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*]
+Parent="Opera 9.80"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(Nintendo Wii; U; *)]
+Parent="Opera 9.80"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.00
+
+[Opera 8.00]
+Parent="DefaultProperties"
+Comment="Opera 8.00"
+Browser="Opera"
+Version="8.00"
+MajorVer=8
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.00*]
+Parent="Opera 8.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.00*FreeBSD*)*]
+Parent="Opera 8.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Linux*)*]
+Parent="Opera 8.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_4*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.4*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_5*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.5*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_6*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.6*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_7*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.7*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_8*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.8*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_9*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.9*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10_10*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X 10.10*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac OS X*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Mac_PowerPC*)*]
+Parent="Opera 8.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*SunOS*)*]
+Parent="Opera 8.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.00*Windows CE*)*]
+Parent="Opera 8.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 5.0*)*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.00*Windows 2000*)*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.00*Win 9x 4.90*)*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.00*Windows ME*)*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.00*Windows 95*)*]
+Parent="Opera 8.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.00*Windows 98*)*]
+Parent="Opera 8.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 4.0*)*]
+Parent="Opera 8.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.00*Windows XP*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 5.1*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 5.2*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 6.0*)*]
+Parent="Opera 8.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 6.1*)*]
+Parent="Opera 8.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 6.2*)*]
+Parent="Opera 8.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.00*Windows NT 6.3*)*]
+Parent="Opera 8.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.00*(*FreeBSD*)*]
+Parent="Opera 8.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.00*(*Linux*)*]
+Parent="Opera 8.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_4*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.4*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_5*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.5*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_6*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.6*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_7*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.7*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_8*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.8*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_9*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.9*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10_10*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X 10.10*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.00*(*Mac OS X*)*]
+Parent="Opera 8.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.00*(*Mac_PowerPC*)*]
+Parent="Opera 8.00"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.00*(*SunOS*)*]
+Parent="Opera 8.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.00*(*Windows CE*)*]
+Parent="Opera 8.00"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.00*(*Windows NT 5.0*)*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.00*(*Windows 2000*)*]
+Parent="Opera 8.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.00*(*Win 9x 4.90*)*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.00*(*Windows ME*)*]
+Parent="Opera 8.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.00*(*Windows 95*)*]
+Parent="Opera 8.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.00*(*Windows 98*)*]
+Parent="Opera 8.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.00*(*Windows NT 4.0*)*]
+Parent="Opera 8.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.00*(*Windows XP*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.00*(*Windows NT 5.1*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.00*(*Windows NT 5.2*)*]
+Parent="Opera 8.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.00*(*Windows NT 6.0*)*]
+Parent="Opera 8.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.00*(*Windows NT 6.1*)*]
+Parent="Opera 8.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.00*(*Windows NT 6.2*)*]
+Parent="Opera 8.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.00*(*Windows NT 6.3*)*]
+Parent="Opera 8.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.01
+
+[Opera 8.01]
+Parent="DefaultProperties"
+Comment="Opera 8.01"
+Browser="Opera"
+Version="8.01"
+MajorVer=8
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.01*]
+Parent="Opera 8.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.01*FreeBSD*)*]
+Parent="Opera 8.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Linux*)*]
+Parent="Opera 8.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_4*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.4*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_5*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.5*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_6*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.6*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_7*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.7*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_8*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.8*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_9*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.9*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10_10*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X 10.10*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac OS X*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Mac_PowerPC*)*]
+Parent="Opera 8.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*SunOS*)*]
+Parent="Opera 8.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.01*Windows CE*)*]
+Parent="Opera 8.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 5.0*)*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.01*Windows 2000*)*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.01*Win 9x 4.90*)*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.01*Windows ME*)*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.01*Windows 95*)*]
+Parent="Opera 8.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.01*Windows 98*)*]
+Parent="Opera 8.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 4.0*)*]
+Parent="Opera 8.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.01*Windows XP*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 5.1*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 5.2*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 6.0*)*]
+Parent="Opera 8.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 6.1*)*]
+Parent="Opera 8.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 6.2*)*]
+Parent="Opera 8.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.01*Windows NT 6.3*)*]
+Parent="Opera 8.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.01*(*FreeBSD*)*]
+Parent="Opera 8.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.01*(*Linux*)*]
+Parent="Opera 8.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_4*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.4*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_5*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.5*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_6*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.6*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_7*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.7*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_8*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.8*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_9*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.9*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10_10*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X 10.10*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.01*(*Mac OS X*)*]
+Parent="Opera 8.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.01*(*Mac_PowerPC*)*]
+Parent="Opera 8.01"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.01*(*SunOS*)*]
+Parent="Opera 8.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.01*(*Windows CE*)*]
+Parent="Opera 8.01"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.01*(*Windows NT 5.0*)*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.01*(*Windows 2000*)*]
+Parent="Opera 8.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.01*(*Win 9x 4.90*)*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.01*(*Windows ME*)*]
+Parent="Opera 8.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.01*(*Windows 95*)*]
+Parent="Opera 8.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.01*(*Windows 98*)*]
+Parent="Opera 8.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.01*(*Windows NT 4.0*)*]
+Parent="Opera 8.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.01*(*Windows XP*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.01*(*Windows NT 5.1*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.01*(*Windows NT 5.2*)*]
+Parent="Opera 8.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.01*(*Windows NT 6.0*)*]
+Parent="Opera 8.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.01*(*Windows NT 6.1*)*]
+Parent="Opera 8.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.01*(*Windows NT 6.2*)*]
+Parent="Opera 8.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.01*(*Windows NT 6.3*)*]
+Parent="Opera 8.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.02
+
+[Opera 8.02]
+Parent="DefaultProperties"
+Comment="Opera 8.02"
+Browser="Opera"
+Version="8.02"
+MajorVer=8
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.02*]
+Parent="Opera 8.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.02*FreeBSD*)*]
+Parent="Opera 8.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Linux*)*]
+Parent="Opera 8.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_4*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.4*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_5*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.5*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_6*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.6*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_7*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.7*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_8*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.8*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_9*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.9*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10_10*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X 10.10*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac OS X*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Mac_PowerPC*)*]
+Parent="Opera 8.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*SunOS*)*]
+Parent="Opera 8.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.02*Windows CE*)*]
+Parent="Opera 8.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 5.0*)*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.02*Windows 2000*)*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.02*Win 9x 4.90*)*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.02*Windows ME*)*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.02*Windows 95*)*]
+Parent="Opera 8.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.02*Windows 98*)*]
+Parent="Opera 8.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 4.0*)*]
+Parent="Opera 8.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.02*Windows XP*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 5.1*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 5.2*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 6.0*)*]
+Parent="Opera 8.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 6.1*)*]
+Parent="Opera 8.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 6.2*)*]
+Parent="Opera 8.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.02*Windows NT 6.3*)*]
+Parent="Opera 8.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.02*(*FreeBSD*)*]
+Parent="Opera 8.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.02*(*Linux*)*]
+Parent="Opera 8.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_4*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.4*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_5*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.5*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_6*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.6*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_7*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.7*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_8*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.8*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_9*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.9*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10_10*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X 10.10*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.02*(*Mac OS X*)*]
+Parent="Opera 8.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.02*(*Mac_PowerPC*)*]
+Parent="Opera 8.02"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.02*(*SunOS*)*]
+Parent="Opera 8.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.02*(*Windows CE*)*]
+Parent="Opera 8.02"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.02*(*Windows NT 5.0*)*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.02*(*Windows 2000*)*]
+Parent="Opera 8.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.02*(*Win 9x 4.90*)*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.02*(*Windows ME*)*]
+Parent="Opera 8.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.02*(*Windows 95*)*]
+Parent="Opera 8.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.02*(*Windows 98*)*]
+Parent="Opera 8.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.02*(*Windows NT 4.0*)*]
+Parent="Opera 8.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.02*(*Windows XP*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.02*(*Windows NT 5.1*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.02*(*Windows NT 5.2*)*]
+Parent="Opera 8.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.02*(*Windows NT 6.0*)*]
+Parent="Opera 8.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.02*(*Windows NT 6.1*)*]
+Parent="Opera 8.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.02*(*Windows NT 6.2*)*]
+Parent="Opera 8.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.02*(*Windows NT 6.3*)*]
+Parent="Opera 8.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.50
+
+[Opera 8.50]
+Parent="DefaultProperties"
+Comment="Opera 8.50"
+Browser="Opera"
+Version="8.50"
+MajorVer=8
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.50*]
+Parent="Opera 8.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.50*FreeBSD*)*]
+Parent="Opera 8.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Linux*)*]
+Parent="Opera 8.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_4*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.4*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_5*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.5*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_6*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.6*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_7*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.7*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_8*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.8*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_9*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.9*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10_10*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X 10.10*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac OS X*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Mac_PowerPC*)*]
+Parent="Opera 8.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*SunOS*)*]
+Parent="Opera 8.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.50*Windows CE*)*]
+Parent="Opera 8.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 5.0*)*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.50*Windows 2000*)*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.50*Win 9x 4.90*)*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.50*Windows ME*)*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.50*Windows 95*)*]
+Parent="Opera 8.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.50*Windows 98*)*]
+Parent="Opera 8.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 4.0*)*]
+Parent="Opera 8.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.50*Windows XP*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 5.1*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 5.2*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 6.0*)*]
+Parent="Opera 8.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 6.1*)*]
+Parent="Opera 8.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 6.2*)*]
+Parent="Opera 8.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.50*Windows NT 6.3*)*]
+Parent="Opera 8.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.50*(*FreeBSD*)*]
+Parent="Opera 8.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.50*(*Linux*)*]
+Parent="Opera 8.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_4*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.4*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_5*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.5*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_6*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.6*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_7*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.7*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_8*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.8*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_9*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.9*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10_10*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X 10.10*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.50*(*Mac OS X*)*]
+Parent="Opera 8.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.50*(*Mac_PowerPC*)*]
+Parent="Opera 8.50"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.50*(*SunOS*)*]
+Parent="Opera 8.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.50*(*Windows CE*)*]
+Parent="Opera 8.50"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.50*(*Windows NT 5.0*)*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.50*(*Windows 2000*)*]
+Parent="Opera 8.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.50*(*Win 9x 4.90*)*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.50*(*Windows ME*)*]
+Parent="Opera 8.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.50*(*Windows 95*)*]
+Parent="Opera 8.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.50*(*Windows 98*)*]
+Parent="Opera 8.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.50*(*Windows NT 4.0*)*]
+Parent="Opera 8.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.50*(*Windows XP*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.50*(*Windows NT 5.1*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.50*(*Windows NT 5.2*)*]
+Parent="Opera 8.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.50*(*Windows NT 6.0*)*]
+Parent="Opera 8.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.50*(*Windows NT 6.1*)*]
+Parent="Opera 8.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.50*(*Windows NT 6.2*)*]
+Parent="Opera 8.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.50*(*Windows NT 6.3*)*]
+Parent="Opera 8.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.51
+
+[Opera 8.51]
+Parent="DefaultProperties"
+Comment="Opera 8.51"
+Browser="Opera"
+Version="8.51"
+MajorVer=8
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.51*]
+Parent="Opera 8.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.51*FreeBSD*)*]
+Parent="Opera 8.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Linux*)*]
+Parent="Opera 8.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_4*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.4*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_5*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.5*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_6*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.6*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_7*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.7*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_8*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.8*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_9*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.9*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10_10*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X 10.10*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac OS X*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Mac_PowerPC*)*]
+Parent="Opera 8.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*SunOS*)*]
+Parent="Opera 8.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.51*Windows CE*)*]
+Parent="Opera 8.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 5.0*)*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.51*Windows 2000*)*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.51*Win 9x 4.90*)*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.51*Windows ME*)*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.51*Windows 95*)*]
+Parent="Opera 8.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.51*Windows 98*)*]
+Parent="Opera 8.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 4.0*)*]
+Parent="Opera 8.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.51*Windows XP*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 5.1*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 5.2*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 6.0*)*]
+Parent="Opera 8.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 6.1*)*]
+Parent="Opera 8.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 6.2*)*]
+Parent="Opera 8.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.51*Windows NT 6.3*)*]
+Parent="Opera 8.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.51*(*FreeBSD*)*]
+Parent="Opera 8.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.51*(*Linux*)*]
+Parent="Opera 8.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_4*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.4*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_5*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.5*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_6*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.6*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_7*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.7*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_8*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.8*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_9*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.9*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10_10*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X 10.10*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.51*(*Mac OS X*)*]
+Parent="Opera 8.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.51*(*Mac_PowerPC*)*]
+Parent="Opera 8.51"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.51*(*SunOS*)*]
+Parent="Opera 8.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.51*(*Windows CE*)*]
+Parent="Opera 8.51"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.51*(*Windows NT 5.0*)*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.51*(*Windows 2000*)*]
+Parent="Opera 8.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.51*(*Win 9x 4.90*)*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.51*(*Windows ME*)*]
+Parent="Opera 8.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.51*(*Windows 95*)*]
+Parent="Opera 8.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.51*(*Windows 98*)*]
+Parent="Opera 8.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.51*(*Windows NT 4.0*)*]
+Parent="Opera 8.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.51*(*Windows XP*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.51*(*Windows NT 5.1*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.51*(*Windows NT 5.2*)*]
+Parent="Opera 8.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.51*(*Windows NT 6.0*)*]
+Parent="Opera 8.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.51*(*Windows NT 6.1*)*]
+Parent="Opera 8.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.51*(*Windows NT 6.2*)*]
+Parent="Opera 8.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.51*(*Windows NT 6.3*)*]
+Parent="Opera 8.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.52
+
+[Opera 8.52]
+Parent="DefaultProperties"
+Comment="Opera 8.52"
+Browser="Opera"
+Version="8.52"
+MajorVer=8
+MinorVer=52
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.52*]
+Parent="Opera 8.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.52*FreeBSD*)*]
+Parent="Opera 8.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Linux*)*]
+Parent="Opera 8.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_4*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.4*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_5*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.5*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_6*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.6*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_7*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.7*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_8*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.8*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_9*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.9*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10_10*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X 10.10*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac OS X*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Mac_PowerPC*)*]
+Parent="Opera 8.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*SunOS*)*]
+Parent="Opera 8.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.52*Windows CE*)*]
+Parent="Opera 8.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 5.0*)*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.52*Windows 2000*)*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.52*Win 9x 4.90*)*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.52*Windows ME*)*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.52*Windows 95*)*]
+Parent="Opera 8.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.52*Windows 98*)*]
+Parent="Opera 8.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 4.0*)*]
+Parent="Opera 8.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.52*Windows XP*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 5.1*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 5.2*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 6.0*)*]
+Parent="Opera 8.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 6.1*)*]
+Parent="Opera 8.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 6.2*)*]
+Parent="Opera 8.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.52*Windows NT 6.3*)*]
+Parent="Opera 8.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.52*(*FreeBSD*)*]
+Parent="Opera 8.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.52*(*Linux*)*]
+Parent="Opera 8.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_4*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.4*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_5*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.5*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_6*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.6*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_7*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.7*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_8*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.8*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_9*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.9*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10_10*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X 10.10*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.52*(*Mac OS X*)*]
+Parent="Opera 8.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.52*(*Mac_PowerPC*)*]
+Parent="Opera 8.52"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.52*(*SunOS*)*]
+Parent="Opera 8.52"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.52*(*Windows CE*)*]
+Parent="Opera 8.52"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.52*(*Windows NT 5.0*)*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.52*(*Windows 2000*)*]
+Parent="Opera 8.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.52*(*Win 9x 4.90*)*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.52*(*Windows ME*)*]
+Parent="Opera 8.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.52*(*Windows 95*)*]
+Parent="Opera 8.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.52*(*Windows 98*)*]
+Parent="Opera 8.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.52*(*Windows NT 4.0*)*]
+Parent="Opera 8.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.52*(*Windows XP*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.52*(*Windows NT 5.1*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.52*(*Windows NT 5.2*)*]
+Parent="Opera 8.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.52*(*Windows NT 6.0*)*]
+Parent="Opera 8.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.52*(*Windows NT 6.1*)*]
+Parent="Opera 8.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.52*(*Windows NT 6.2*)*]
+Parent="Opera 8.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.52*(*Windows NT 6.3*)*]
+Parent="Opera 8.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.53
+
+[Opera 8.53]
+Parent="DefaultProperties"
+Comment="Opera 8.53"
+Browser="Opera"
+Version="8.53"
+MajorVer=8
+MinorVer=53
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.53*]
+Parent="Opera 8.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.53*FreeBSD*)*]
+Parent="Opera 8.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Linux*)*]
+Parent="Opera 8.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_4*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.4*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_5*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.5*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_6*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.6*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_7*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.7*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_8*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.8*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_9*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.9*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10_10*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X 10.10*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac OS X*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Mac_PowerPC*)*]
+Parent="Opera 8.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*SunOS*)*]
+Parent="Opera 8.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.53*Windows CE*)*]
+Parent="Opera 8.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 5.0*)*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.53*Windows 2000*)*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.53*Win 9x 4.90*)*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.53*Windows ME*)*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.53*Windows 95*)*]
+Parent="Opera 8.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.53*Windows 98*)*]
+Parent="Opera 8.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 4.0*)*]
+Parent="Opera 8.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.53*Windows XP*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 5.1*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 5.2*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 6.0*)*]
+Parent="Opera 8.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 6.1*)*]
+Parent="Opera 8.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 6.2*)*]
+Parent="Opera 8.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.53*Windows NT 6.3*)*]
+Parent="Opera 8.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.53*(*FreeBSD*)*]
+Parent="Opera 8.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.53*(*Linux*)*]
+Parent="Opera 8.53"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_4*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.4*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_5*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.5*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_6*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.6*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_7*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.7*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_8*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.8*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_9*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.9*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10_10*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X 10.10*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.53*(*Mac OS X*)*]
+Parent="Opera 8.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.53*(*Mac_PowerPC*)*]
+Parent="Opera 8.53"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.53*(*SunOS*)*]
+Parent="Opera 8.53"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.53*(*Windows CE*)*]
+Parent="Opera 8.53"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.53*(*Windows NT 5.0*)*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.53*(*Windows 2000*)*]
+Parent="Opera 8.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.53*(*Win 9x 4.90*)*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.53*(*Windows ME*)*]
+Parent="Opera 8.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.53*(*Windows 95*)*]
+Parent="Opera 8.53"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.53*(*Windows 98*)*]
+Parent="Opera 8.53"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.53*(*Windows NT 4.0*)*]
+Parent="Opera 8.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.53*(*Windows XP*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.53*(*Windows NT 5.1*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.53*(*Windows NT 5.2*)*]
+Parent="Opera 8.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.53*(*Windows NT 6.0*)*]
+Parent="Opera 8.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.53*(*Windows NT 6.1*)*]
+Parent="Opera 8.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.53*(*Windows NT 6.2*)*]
+Parent="Opera 8.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.53*(*Windows NT 6.3*)*]
+Parent="Opera 8.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 8.54
+
+[Opera 8.54]
+Parent="DefaultProperties"
+Comment="Opera 8.54"
+Browser="Opera"
+Version="8.54"
+MajorVer=8
+MinorVer=54
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Mac_PowerPC*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows CE*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows XP*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?8.54*]
+Parent="Opera 8.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?8.54*FreeBSD*)*]
+Parent="Opera 8.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Linux*)*]
+Parent="Opera 8.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_4*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.4*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_5*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.5*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_6*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.6*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_7*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.7*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_8*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.8*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_9*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.9*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10_10*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X 10.10*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac OS X*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Mac_PowerPC*)*]
+Parent="Opera 8.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*SunOS*)*]
+Parent="Opera 8.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?8.54*Windows CE*)*]
+Parent="Opera 8.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 5.0*)*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.54*Windows 2000*)*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?8.54*Win 9x 4.90*)*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.54*Windows ME*)*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?8.54*Windows 95*)*]
+Parent="Opera 8.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?8.54*Windows 98*)*]
+Parent="Opera 8.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 4.0*)*]
+Parent="Opera 8.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?8.54*Windows XP*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 5.1*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 5.2*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 6.0*)*]
+Parent="Opera 8.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 6.1*)*]
+Parent="Opera 8.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 6.2*)*]
+Parent="Opera 8.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?8.54*Windows NT 6.3*)*]
+Parent="Opera 8.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/8.54*(*FreeBSD*)*]
+Parent="Opera 8.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/8.54*(*Linux*)*]
+Parent="Opera 8.54"
+Platform="Linux"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_4*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.4*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_5*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.5*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_6*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.6*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_7*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.7*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_8*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.8*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_9*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.9*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10_10*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X 10.10*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/8.54*(*Mac OS X*)*]
+Parent="Opera 8.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.54*(*Mac_PowerPC*)*]
+Parent="Opera 8.54"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[Opera/8.54*(*SunOS*)*]
+Parent="Opera 8.54"
+Platform="SunOS"
+Win32="false"
+
+[Opera/8.54*(*Windows CE*)*]
+Parent="Opera 8.54"
+Platform="WinCE"
+Win32="false"
+isMobileDevice="true"
+
+[Opera/8.54*(*Windows NT 5.0*)*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.54*(*Windows 2000*)*]
+Parent="Opera 8.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/8.54*(*Win 9x 4.90*)*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.54*(*Windows ME*)*]
+Parent="Opera 8.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/8.54*(*Windows 95*)*]
+Parent="Opera 8.54"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/8.54*(*Windows 98*)*]
+Parent="Opera 8.54"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/8.54*(*Windows NT 4.0*)*]
+Parent="Opera 8.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/8.54*(*Windows XP*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.54*(*Windows NT 5.1*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/8.54*(*Windows NT 5.2*)*]
+Parent="Opera 8.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/8.54*(*Windows NT 6.0*)*]
+Parent="Opera 8.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/8.54*(*Windows NT 6.1*)*]
+Parent="Opera 8.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/8.54*(*Windows NT 6.2*)*]
+Parent="Opera 8.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/8.54*(*Windows NT 6.3*)*]
+Parent="Opera 8.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.00
+
+[Opera 7.00]
+Parent="DefaultProperties"
+Comment="Opera 7.00"
+Browser="Opera"
+Version="7.00"
+MajorVer=7
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.00*]
+Parent="Opera 7.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.00*FreeBSD*)*]
+Parent="Opera 7.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Linux*)*]
+Parent="Opera 7.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_4*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.4*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_5*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.5*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_6*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.6*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_7*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.7*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_8*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.8*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_9*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.9*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10_10*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X 10.10*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Mac OS X*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*SunOS*)*]
+Parent="Opera 7.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 5.0*)*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.00*Windows 2000*)*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.00*Win 9x 4.90*)*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.00*Windows ME*)*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.00*Windows 95*)*]
+Parent="Opera 7.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.00*Windows 98*)*]
+Parent="Opera 7.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 4.0*)*]
+Parent="Opera 7.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 5.1*)*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 5.2*)*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 6.0*)*]
+Parent="Opera 7.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 6.1*)*]
+Parent="Opera 7.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 6.2*)*]
+Parent="Opera 7.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.00*Windows NT 6.3*)*]
+Parent="Opera 7.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.00*(*FreeBSD*)*]
+Parent="Opera 7.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.00*(*Linux*)*]
+Parent="Opera 7.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_4*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.4*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_5*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.5*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_6*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.6*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_7*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.7*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_8*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.8*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_9*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.9*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10_10*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X 10.10*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.00*(*Mac OS X*)*]
+Parent="Opera 7.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.00*(*SunOS*)*]
+Parent="Opera 7.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.00*(*Windows NT 5.0*)*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.00*(*Windows 2000*)*]
+Parent="Opera 7.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.00*(*Win 9x 4.90*)*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.00*(*Windows ME*)*]
+Parent="Opera 7.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.00*(*Windows 95*)*]
+Parent="Opera 7.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.00*(*Windows 98*)*]
+Parent="Opera 7.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.00*(*Windows NT 4.0*)*]
+Parent="Opera 7.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.00*(*Windows NT 5.1*)*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.00*(*Windows NT 5.2*)*]
+Parent="Opera 7.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.00*(*Windows NT 6.0*)*]
+Parent="Opera 7.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.00*(*Windows NT 6.1*)*]
+Parent="Opera 7.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.00*(*Windows NT 6.2*)*]
+Parent="Opera 7.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.00*(*Windows NT 6.3*)*]
+Parent="Opera 7.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.01
+
+[Opera 7.01]
+Parent="DefaultProperties"
+Comment="Opera 7.01"
+Browser="Opera"
+Version="7.01"
+MajorVer=7
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.01*]
+Parent="Opera 7.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.01*FreeBSD*)*]
+Parent="Opera 7.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Linux*)*]
+Parent="Opera 7.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_4*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.4*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_5*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.5*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_6*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.6*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_7*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.7*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_8*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.8*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_9*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.9*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10_10*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X 10.10*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Mac OS X*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*SunOS*)*]
+Parent="Opera 7.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 5.0*)*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.01*Windows 2000*)*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.01*Win 9x 4.90*)*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.01*Windows ME*)*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.01*Windows 95*)*]
+Parent="Opera 7.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.01*Windows 98*)*]
+Parent="Opera 7.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 4.0*)*]
+Parent="Opera 7.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 5.1*)*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 5.2*)*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 6.0*)*]
+Parent="Opera 7.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 6.1*)*]
+Parent="Opera 7.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 6.2*)*]
+Parent="Opera 7.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.01*Windows NT 6.3*)*]
+Parent="Opera 7.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.01*(*FreeBSD*)*]
+Parent="Opera 7.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.01*(*Linux*)*]
+Parent="Opera 7.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_4*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.4*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_5*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.5*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_6*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.6*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_7*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.7*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_8*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.8*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_9*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.9*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10_10*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X 10.10*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.01*(*Mac OS X*)*]
+Parent="Opera 7.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.01*(*SunOS*)*]
+Parent="Opera 7.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.01*(*Windows NT 5.0*)*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.01*(*Windows 2000*)*]
+Parent="Opera 7.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.01*(*Win 9x 4.90*)*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.01*(*Windows ME*)*]
+Parent="Opera 7.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.01*(*Windows 95*)*]
+Parent="Opera 7.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.01*(*Windows 98*)*]
+Parent="Opera 7.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.01*(*Windows NT 4.0*)*]
+Parent="Opera 7.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.01*(*Windows NT 5.1*)*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.01*(*Windows NT 5.2*)*]
+Parent="Opera 7.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.01*(*Windows NT 6.0*)*]
+Parent="Opera 7.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.01*(*Windows NT 6.1*)*]
+Parent="Opera 7.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.01*(*Windows NT 6.2*)*]
+Parent="Opera 7.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.01*(*Windows NT 6.3*)*]
+Parent="Opera 7.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.02
+
+[Opera 7.02]
+Parent="DefaultProperties"
+Comment="Opera 7.02"
+Browser="Opera"
+Version="7.02"
+MajorVer=7
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.02*]
+Parent="Opera 7.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.02*FreeBSD*)*]
+Parent="Opera 7.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Linux*)*]
+Parent="Opera 7.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_4*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.4*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_5*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.5*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_6*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.6*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_7*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.7*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_8*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.8*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_9*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.9*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10_10*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X 10.10*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Mac OS X*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*SunOS*)*]
+Parent="Opera 7.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 5.0*)*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.02*Windows 2000*)*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.02*Win 9x 4.90*)*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.02*Windows ME*)*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.02*Windows 95*)*]
+Parent="Opera 7.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.02*Windows 98*)*]
+Parent="Opera 7.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 4.0*)*]
+Parent="Opera 7.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 5.1*)*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 5.2*)*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 6.0*)*]
+Parent="Opera 7.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 6.1*)*]
+Parent="Opera 7.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 6.2*)*]
+Parent="Opera 7.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.02*Windows NT 6.3*)*]
+Parent="Opera 7.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.02*(*FreeBSD*)*]
+Parent="Opera 7.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.02*(*Linux*)*]
+Parent="Opera 7.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_4*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.4*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_5*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.5*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_6*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.6*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_7*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.7*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_8*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.8*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_9*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.9*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10_10*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X 10.10*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.02*(*Mac OS X*)*]
+Parent="Opera 7.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.02*(*SunOS*)*]
+Parent="Opera 7.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.02*(*Windows NT 5.0*)*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.02*(*Windows 2000*)*]
+Parent="Opera 7.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.02*(*Win 9x 4.90*)*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.02*(*Windows ME*)*]
+Parent="Opera 7.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.02*(*Windows 95*)*]
+Parent="Opera 7.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.02*(*Windows 98*)*]
+Parent="Opera 7.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.02*(*Windows NT 4.0*)*]
+Parent="Opera 7.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.02*(*Windows NT 5.1*)*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.02*(*Windows NT 5.2*)*]
+Parent="Opera 7.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.02*(*Windows NT 6.0*)*]
+Parent="Opera 7.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.02*(*Windows NT 6.1*)*]
+Parent="Opera 7.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.02*(*Windows NT 6.2*)*]
+Parent="Opera 7.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.02*(*Windows NT 6.3*)*]
+Parent="Opera 7.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.03
+
+[Opera 7.03]
+Parent="DefaultProperties"
+Comment="Opera 7.03"
+Browser="Opera"
+Version="7.03"
+MajorVer=7
+MinorVer=03
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.03*]
+Parent="Opera 7.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.03*FreeBSD*)*]
+Parent="Opera 7.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Linux*)*]
+Parent="Opera 7.03"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_4*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.4*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_5*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.5*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_6*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.6*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_7*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.7*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_8*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.8*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_9*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.9*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10_10*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X 10.10*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Mac OS X*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*SunOS*)*]
+Parent="Opera 7.03"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 5.0*)*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.03*Windows 2000*)*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.03*Win 9x 4.90*)*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.03*Windows ME*)*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.03*Windows 95*)*]
+Parent="Opera 7.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.03*Windows 98*)*]
+Parent="Opera 7.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 4.0*)*]
+Parent="Opera 7.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 5.1*)*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 5.2*)*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 6.0*)*]
+Parent="Opera 7.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 6.1*)*]
+Parent="Opera 7.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 6.2*)*]
+Parent="Opera 7.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.03*Windows NT 6.3*)*]
+Parent="Opera 7.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.03*(*FreeBSD*)*]
+Parent="Opera 7.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.03*(*Linux*)*]
+Parent="Opera 7.03"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_4*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.4*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_5*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.5*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_6*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.6*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_7*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.7*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_8*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.8*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_9*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.9*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10_10*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X 10.10*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.03*(*Mac OS X*)*]
+Parent="Opera 7.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.03*(*SunOS*)*]
+Parent="Opera 7.03"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.03*(*Windows NT 5.0*)*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.03*(*Windows 2000*)*]
+Parent="Opera 7.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.03*(*Win 9x 4.90*)*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.03*(*Windows ME*)*]
+Parent="Opera 7.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.03*(*Windows 95*)*]
+Parent="Opera 7.03"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.03*(*Windows 98*)*]
+Parent="Opera 7.03"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.03*(*Windows NT 4.0*)*]
+Parent="Opera 7.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.03*(*Windows NT 5.1*)*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.03*(*Windows NT 5.2*)*]
+Parent="Opera 7.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.03*(*Windows NT 6.0*)*]
+Parent="Opera 7.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.03*(*Windows NT 6.1*)*]
+Parent="Opera 7.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.03*(*Windows NT 6.2*)*]
+Parent="Opera 7.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.03*(*Windows NT 6.3*)*]
+Parent="Opera 7.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.10
+
+[Opera 7.10]
+Parent="DefaultProperties"
+Comment="Opera 7.10"
+Browser="Opera"
+Version="7.10"
+MajorVer=7
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.10*]
+Parent="Opera 7.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.10*FreeBSD*)*]
+Parent="Opera 7.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Linux*)*]
+Parent="Opera 7.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_4*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.4*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_5*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.5*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_6*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.6*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_7*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.7*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_8*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.8*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_9*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.9*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10_10*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X 10.10*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Mac OS X*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*SunOS*)*]
+Parent="Opera 7.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 5.0*)*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.10*Windows 2000*)*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.10*Win 9x 4.90*)*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.10*Windows ME*)*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.10*Windows 95*)*]
+Parent="Opera 7.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.10*Windows 98*)*]
+Parent="Opera 7.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 4.0*)*]
+Parent="Opera 7.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 5.1*)*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 5.2*)*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 6.0*)*]
+Parent="Opera 7.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 6.1*)*]
+Parent="Opera 7.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 6.2*)*]
+Parent="Opera 7.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.10*Windows NT 6.3*)*]
+Parent="Opera 7.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.10*(*FreeBSD*)*]
+Parent="Opera 7.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.10*(*Linux*)*]
+Parent="Opera 7.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_4*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.4*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_5*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.5*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_6*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.6*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_7*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.7*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_8*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.8*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_9*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.9*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10_10*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X 10.10*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.10*(*Mac OS X*)*]
+Parent="Opera 7.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.10*(*SunOS*)*]
+Parent="Opera 7.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.10*(*Windows NT 5.0*)*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.10*(*Windows 2000*)*]
+Parent="Opera 7.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.10*(*Win 9x 4.90*)*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.10*(*Windows ME*)*]
+Parent="Opera 7.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.10*(*Windows 95*)*]
+Parent="Opera 7.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.10*(*Windows 98*)*]
+Parent="Opera 7.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.10*(*Windows NT 4.0*)*]
+Parent="Opera 7.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.10*(*Windows NT 5.1*)*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.10*(*Windows NT 5.2*)*]
+Parent="Opera 7.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.10*(*Windows NT 6.0*)*]
+Parent="Opera 7.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.10*(*Windows NT 6.1*)*]
+Parent="Opera 7.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.10*(*Windows NT 6.2*)*]
+Parent="Opera 7.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.10*(*Windows NT 6.3*)*]
+Parent="Opera 7.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.11
+
+[Opera 7.11]
+Parent="DefaultProperties"
+Comment="Opera 7.11"
+Browser="Opera"
+Version="7.11"
+MajorVer=7
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.11*]
+Parent="Opera 7.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.11*FreeBSD*)*]
+Parent="Opera 7.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Linux*)*]
+Parent="Opera 7.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_4*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.4*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_5*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.5*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_6*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.6*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_7*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.7*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_8*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.8*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_9*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.9*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10_10*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X 10.10*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Mac OS X*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*SunOS*)*]
+Parent="Opera 7.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 5.0*)*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.11*Windows 2000*)*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.11*Win 9x 4.90*)*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.11*Windows ME*)*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.11*Windows 95*)*]
+Parent="Opera 7.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.11*Windows 98*)*]
+Parent="Opera 7.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 4.0*)*]
+Parent="Opera 7.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 5.1*)*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 5.2*)*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 6.0*)*]
+Parent="Opera 7.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 6.1*)*]
+Parent="Opera 7.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 6.2*)*]
+Parent="Opera 7.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.11*Windows NT 6.3*)*]
+Parent="Opera 7.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.11*(*FreeBSD*)*]
+Parent="Opera 7.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.11*(*Linux*)*]
+Parent="Opera 7.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_4*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.4*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_5*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.5*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_6*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.6*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_7*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.7*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_8*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.8*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_9*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.9*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10_10*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X 10.10*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.11*(*Mac OS X*)*]
+Parent="Opera 7.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.11*(*SunOS*)*]
+Parent="Opera 7.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.11*(*Windows NT 5.0*)*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.11*(*Windows 2000*)*]
+Parent="Opera 7.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.11*(*Win 9x 4.90*)*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.11*(*Windows ME*)*]
+Parent="Opera 7.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.11*(*Windows 95*)*]
+Parent="Opera 7.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.11*(*Windows 98*)*]
+Parent="Opera 7.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.11*(*Windows NT 4.0*)*]
+Parent="Opera 7.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.11*(*Windows NT 5.1*)*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.11*(*Windows NT 5.2*)*]
+Parent="Opera 7.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.11*(*Windows NT 6.0*)*]
+Parent="Opera 7.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.11*(*Windows NT 6.1*)*]
+Parent="Opera 7.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.11*(*Windows NT 6.2*)*]
+Parent="Opera 7.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.11*(*Windows NT 6.3*)*]
+Parent="Opera 7.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.20
+
+[Opera 7.20]
+Parent="DefaultProperties"
+Comment="Opera 7.20"
+Browser="Opera"
+Version="7.20"
+MajorVer=7
+MinorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.20*]
+Parent="Opera 7.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.20*FreeBSD*)*]
+Parent="Opera 7.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Linux*)*]
+Parent="Opera 7.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_4*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.4*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_5*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.5*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_6*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.6*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_7*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.7*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_8*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.8*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_9*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.9*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10_10*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X 10.10*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Mac OS X*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*SunOS*)*]
+Parent="Opera 7.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 5.0*)*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.20*Windows 2000*)*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.20*Win 9x 4.90*)*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.20*Windows ME*)*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.20*Windows 95*)*]
+Parent="Opera 7.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.20*Windows 98*)*]
+Parent="Opera 7.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 4.0*)*]
+Parent="Opera 7.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 5.1*)*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 5.2*)*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 6.0*)*]
+Parent="Opera 7.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 6.1*)*]
+Parent="Opera 7.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 6.2*)*]
+Parent="Opera 7.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.20*Windows NT 6.3*)*]
+Parent="Opera 7.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.20*(*FreeBSD*)*]
+Parent="Opera 7.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.20*(*Linux*)*]
+Parent="Opera 7.20"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_4*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.4*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_5*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.5*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_6*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.6*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_7*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.7*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_8*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.8*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_9*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.9*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10_10*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X 10.10*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.20*(*Mac OS X*)*]
+Parent="Opera 7.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.20*(*SunOS*)*]
+Parent="Opera 7.20"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.20*(*Windows NT 5.0*)*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.20*(*Windows 2000*)*]
+Parent="Opera 7.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.20*(*Win 9x 4.90*)*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.20*(*Windows ME*)*]
+Parent="Opera 7.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.20*(*Windows 95*)*]
+Parent="Opera 7.20"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.20*(*Windows 98*)*]
+Parent="Opera 7.20"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.20*(*Windows NT 4.0*)*]
+Parent="Opera 7.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.20*(*Windows NT 5.1*)*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.20*(*Windows NT 5.2*)*]
+Parent="Opera 7.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.20*(*Windows NT 6.0*)*]
+Parent="Opera 7.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.20*(*Windows NT 6.1*)*]
+Parent="Opera 7.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.20*(*Windows NT 6.2*)*]
+Parent="Opera 7.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.20*(*Windows NT 6.3*)*]
+Parent="Opera 7.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.21
+
+[Opera 7.21]
+Parent="DefaultProperties"
+Comment="Opera 7.21"
+Browser="Opera"
+Version="7.21"
+MajorVer=7
+MinorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.21*]
+Parent="Opera 7.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.21*FreeBSD*)*]
+Parent="Opera 7.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Linux*)*]
+Parent="Opera 7.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_4*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.4*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_5*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.5*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_6*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.6*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_7*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.7*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_8*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.8*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_9*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.9*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10_10*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X 10.10*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Mac OS X*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*SunOS*)*]
+Parent="Opera 7.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 5.0*)*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.21*Windows 2000*)*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.21*Win 9x 4.90*)*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.21*Windows ME*)*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.21*Windows 95*)*]
+Parent="Opera 7.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.21*Windows 98*)*]
+Parent="Opera 7.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 4.0*)*]
+Parent="Opera 7.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 5.1*)*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 5.2*)*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 6.0*)*]
+Parent="Opera 7.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 6.1*)*]
+Parent="Opera 7.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 6.2*)*]
+Parent="Opera 7.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.21*Windows NT 6.3*)*]
+Parent="Opera 7.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.21*(*FreeBSD*)*]
+Parent="Opera 7.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.21*(*Linux*)*]
+Parent="Opera 7.21"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_4*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.4*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_5*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.5*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_6*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.6*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_7*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.7*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_8*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.8*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_9*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.9*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10_10*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X 10.10*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.21*(*Mac OS X*)*]
+Parent="Opera 7.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.21*(*SunOS*)*]
+Parent="Opera 7.21"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.21*(*Windows NT 5.0*)*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.21*(*Windows 2000*)*]
+Parent="Opera 7.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.21*(*Win 9x 4.90*)*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.21*(*Windows ME*)*]
+Parent="Opera 7.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.21*(*Windows 95*)*]
+Parent="Opera 7.21"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.21*(*Windows 98*)*]
+Parent="Opera 7.21"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.21*(*Windows NT 4.0*)*]
+Parent="Opera 7.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.21*(*Windows NT 5.1*)*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.21*(*Windows NT 5.2*)*]
+Parent="Opera 7.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.21*(*Windows NT 6.0*)*]
+Parent="Opera 7.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.21*(*Windows NT 6.1*)*]
+Parent="Opera 7.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.21*(*Windows NT 6.2*)*]
+Parent="Opera 7.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.21*(*Windows NT 6.3*)*]
+Parent="Opera 7.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.22
+
+[Opera 7.22]
+Parent="DefaultProperties"
+Comment="Opera 7.22"
+Browser="Opera"
+Version="7.22"
+MajorVer=7
+MinorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.22*]
+Parent="Opera 7.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.22*FreeBSD*)*]
+Parent="Opera 7.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Linux*)*]
+Parent="Opera 7.22"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_4*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.4*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_5*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.5*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_6*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.6*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_7*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.7*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_8*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.8*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_9*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.9*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10_10*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X 10.10*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Mac OS X*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*SunOS*)*]
+Parent="Opera 7.22"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 5.0*)*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.22*Windows 2000*)*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.22*Win 9x 4.90*)*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.22*Windows ME*)*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.22*Windows 95*)*]
+Parent="Opera 7.22"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.22*Windows 98*)*]
+Parent="Opera 7.22"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 4.0*)*]
+Parent="Opera 7.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 5.1*)*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 5.2*)*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 6.0*)*]
+Parent="Opera 7.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 6.1*)*]
+Parent="Opera 7.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 6.2*)*]
+Parent="Opera 7.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.22*Windows NT 6.3*)*]
+Parent="Opera 7.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.22*(*FreeBSD*)*]
+Parent="Opera 7.22"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.22*(*Linux*)*]
+Parent="Opera 7.22"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_4*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.4*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_5*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.5*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_6*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.6*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_7*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.7*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_8*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.8*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_9*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.9*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10_10*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X 10.10*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.22*(*Mac OS X*)*]
+Parent="Opera 7.22"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.22*(*SunOS*)*]
+Parent="Opera 7.22"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.22*(*Windows NT 5.0*)*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.22*(*Windows 2000*)*]
+Parent="Opera 7.22"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.22*(*Win 9x 4.90*)*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.22*(*Windows ME*)*]
+Parent="Opera 7.22"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.22*(*Windows 95*)*]
+Parent="Opera 7.22"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.22*(*Windows 98*)*]
+Parent="Opera 7.22"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.22*(*Windows NT 4.0*)*]
+Parent="Opera 7.22"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.22*(*Windows NT 5.1*)*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.22*(*Windows NT 5.2*)*]
+Parent="Opera 7.22"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.22*(*Windows NT 6.0*)*]
+Parent="Opera 7.22"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.22*(*Windows NT 6.1*)*]
+Parent="Opera 7.22"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.22*(*Windows NT 6.2*)*]
+Parent="Opera 7.22"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.22*(*Windows NT 6.3*)*]
+Parent="Opera 7.22"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.23
+
+[Opera 7.23]
+Parent="DefaultProperties"
+Comment="Opera 7.23"
+Browser="Opera"
+Version="7.23"
+MajorVer=7
+MinorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.23*]
+Parent="Opera 7.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.23*FreeBSD*)*]
+Parent="Opera 7.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Linux*)*]
+Parent="Opera 7.23"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_4*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.4*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_5*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.5*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_6*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.6*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_7*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.7*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_8*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.8*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_9*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.9*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10_10*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X 10.10*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Mac OS X*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*SunOS*)*]
+Parent="Opera 7.23"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 5.0*)*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.23*Windows 2000*)*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.23*Win 9x 4.90*)*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.23*Windows ME*)*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.23*Windows 95*)*]
+Parent="Opera 7.23"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.23*Windows 98*)*]
+Parent="Opera 7.23"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 4.0*)*]
+Parent="Opera 7.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 5.1*)*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 5.2*)*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 6.0*)*]
+Parent="Opera 7.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 6.1*)*]
+Parent="Opera 7.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 6.2*)*]
+Parent="Opera 7.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.23*Windows NT 6.3*)*]
+Parent="Opera 7.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.23*(*FreeBSD*)*]
+Parent="Opera 7.23"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.23*(*Linux*)*]
+Parent="Opera 7.23"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_4*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.4*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_5*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.5*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_6*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.6*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_7*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.7*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_8*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.8*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_9*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.9*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10_10*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X 10.10*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.23*(*Mac OS X*)*]
+Parent="Opera 7.23"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.23*(*SunOS*)*]
+Parent="Opera 7.23"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.23*(*Windows NT 5.0*)*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.23*(*Windows 2000*)*]
+Parent="Opera 7.23"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.23*(*Win 9x 4.90*)*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.23*(*Windows ME*)*]
+Parent="Opera 7.23"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.23*(*Windows 95*)*]
+Parent="Opera 7.23"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.23*(*Windows 98*)*]
+Parent="Opera 7.23"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.23*(*Windows NT 4.0*)*]
+Parent="Opera 7.23"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.23*(*Windows NT 5.1*)*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.23*(*Windows NT 5.2*)*]
+Parent="Opera 7.23"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.23*(*Windows NT 6.0*)*]
+Parent="Opera 7.23"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.23*(*Windows NT 6.1*)*]
+Parent="Opera 7.23"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.23*(*Windows NT 6.2*)*]
+Parent="Opera 7.23"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.23*(*Windows NT 6.3*)*]
+Parent="Opera 7.23"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.50
+
+[Opera 7.50]
+Parent="DefaultProperties"
+Comment="Opera 7.50"
+Browser="Opera"
+Version="7.50"
+MajorVer=7
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.50*]
+Parent="Opera 7.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.50*FreeBSD*)*]
+Parent="Opera 7.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Linux*)*]
+Parent="Opera 7.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_4*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.4*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_5*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.5*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_6*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.6*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_7*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.7*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_8*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.8*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_9*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.9*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10_10*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X 10.10*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Mac OS X*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*SunOS*)*]
+Parent="Opera 7.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 5.0*)*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.50*Windows 2000*)*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.50*Win 9x 4.90*)*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.50*Windows ME*)*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.50*Windows 95*)*]
+Parent="Opera 7.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.50*Windows 98*)*]
+Parent="Opera 7.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 4.0*)*]
+Parent="Opera 7.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 5.1*)*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 5.2*)*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 6.0*)*]
+Parent="Opera 7.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 6.1*)*]
+Parent="Opera 7.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 6.2*)*]
+Parent="Opera 7.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.50*Windows NT 6.3*)*]
+Parent="Opera 7.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.50*(*FreeBSD*)*]
+Parent="Opera 7.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.50*(*Linux*)*]
+Parent="Opera 7.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_4*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.4*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_5*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.5*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_6*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.6*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_7*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.7*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_8*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.8*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_9*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.9*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10_10*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X 10.10*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.50*(*Mac OS X*)*]
+Parent="Opera 7.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.50*(*SunOS*)*]
+Parent="Opera 7.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.50*(*Windows NT 5.0*)*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.50*(*Windows 2000*)*]
+Parent="Opera 7.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.50*(*Win 9x 4.90*)*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.50*(*Windows ME*)*]
+Parent="Opera 7.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.50*(*Windows 95*)*]
+Parent="Opera 7.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.50*(*Windows 98*)*]
+Parent="Opera 7.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.50*(*Windows NT 4.0*)*]
+Parent="Opera 7.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.50*(*Windows NT 5.1*)*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.50*(*Windows NT 5.2*)*]
+Parent="Opera 7.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.50*(*Windows NT 6.0*)*]
+Parent="Opera 7.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.50*(*Windows NT 6.1*)*]
+Parent="Opera 7.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.50*(*Windows NT 6.2*)*]
+Parent="Opera 7.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.50*(*Windows NT 6.3*)*]
+Parent="Opera 7.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.51
+
+[Opera 7.51]
+Parent="DefaultProperties"
+Comment="Opera 7.51"
+Browser="Opera"
+Version="7.51"
+MajorVer=7
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.51*]
+Parent="Opera 7.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.51*FreeBSD*)*]
+Parent="Opera 7.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Linux*)*]
+Parent="Opera 7.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_4*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.4*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_5*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.5*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_6*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.6*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_7*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.7*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_8*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.8*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_9*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.9*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10_10*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X 10.10*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Mac OS X*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*SunOS*)*]
+Parent="Opera 7.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 5.0*)*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.51*Windows 2000*)*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.51*Win 9x 4.90*)*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.51*Windows ME*)*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.51*Windows 95*)*]
+Parent="Opera 7.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.51*Windows 98*)*]
+Parent="Opera 7.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 4.0*)*]
+Parent="Opera 7.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 5.1*)*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 5.2*)*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 6.0*)*]
+Parent="Opera 7.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 6.1*)*]
+Parent="Opera 7.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 6.2*)*]
+Parent="Opera 7.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.51*Windows NT 6.3*)*]
+Parent="Opera 7.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.51*(*FreeBSD*)*]
+Parent="Opera 7.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.51*(*Linux*)*]
+Parent="Opera 7.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_4*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.4*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_5*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.5*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_6*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.6*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_7*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.7*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_8*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.8*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_9*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.9*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10_10*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X 10.10*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.51*(*Mac OS X*)*]
+Parent="Opera 7.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.51*(*SunOS*)*]
+Parent="Opera 7.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.51*(*Windows NT 5.0*)*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.51*(*Windows 2000*)*]
+Parent="Opera 7.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.51*(*Win 9x 4.90*)*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.51*(*Windows ME*)*]
+Parent="Opera 7.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.51*(*Windows 95*)*]
+Parent="Opera 7.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.51*(*Windows 98*)*]
+Parent="Opera 7.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.51*(*Windows NT 4.0*)*]
+Parent="Opera 7.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.51*(*Windows NT 5.1*)*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.51*(*Windows NT 5.2*)*]
+Parent="Opera 7.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.51*(*Windows NT 6.0*)*]
+Parent="Opera 7.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.51*(*Windows NT 6.1*)*]
+Parent="Opera 7.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.51*(*Windows NT 6.2*)*]
+Parent="Opera 7.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.51*(*Windows NT 6.3*)*]
+Parent="Opera 7.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.52
+
+[Opera 7.52]
+Parent="DefaultProperties"
+Comment="Opera 7.52"
+Browser="Opera"
+Version="7.52"
+MajorVer=7
+MinorVer=52
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.52*]
+Parent="Opera 7.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.52*FreeBSD*)*]
+Parent="Opera 7.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Linux*)*]
+Parent="Opera 7.52"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_4*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.4*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_5*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.5*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_6*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.6*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_7*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.7*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_8*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.8*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_9*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.9*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10_10*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X 10.10*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Mac OS X*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*SunOS*)*]
+Parent="Opera 7.52"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 5.0*)*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.52*Windows 2000*)*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.52*Win 9x 4.90*)*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.52*Windows ME*)*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.52*Windows 95*)*]
+Parent="Opera 7.52"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.52*Windows 98*)*]
+Parent="Opera 7.52"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 4.0*)*]
+Parent="Opera 7.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 5.1*)*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 5.2*)*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 6.0*)*]
+Parent="Opera 7.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 6.1*)*]
+Parent="Opera 7.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 6.2*)*]
+Parent="Opera 7.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.52*Windows NT 6.3*)*]
+Parent="Opera 7.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.52*(*FreeBSD*)*]
+Parent="Opera 7.52"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.52*(*Linux*)*]
+Parent="Opera 7.52"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_4*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.4*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_5*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.5*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_6*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.6*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_7*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.7*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_8*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.8*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_9*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.9*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10_10*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X 10.10*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.52*(*Mac OS X*)*]
+Parent="Opera 7.52"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.52*(*SunOS*)*]
+Parent="Opera 7.52"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.52*(*Windows NT 5.0*)*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.52*(*Windows 2000*)*]
+Parent="Opera 7.52"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.52*(*Win 9x 4.90*)*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.52*(*Windows ME*)*]
+Parent="Opera 7.52"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.52*(*Windows 95*)*]
+Parent="Opera 7.52"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.52*(*Windows 98*)*]
+Parent="Opera 7.52"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.52*(*Windows NT 4.0*)*]
+Parent="Opera 7.52"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.52*(*Windows NT 5.1*)*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.52*(*Windows NT 5.2*)*]
+Parent="Opera 7.52"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.52*(*Windows NT 6.0*)*]
+Parent="Opera 7.52"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.52*(*Windows NT 6.1*)*]
+Parent="Opera 7.52"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.52*(*Windows NT 6.2*)*]
+Parent="Opera 7.52"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.52*(*Windows NT 6.3*)*]
+Parent="Opera 7.52"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.53
+
+[Opera 7.53]
+Parent="DefaultProperties"
+Comment="Opera 7.53"
+Browser="Opera"
+Version="7.53"
+MajorVer=7
+MinorVer=53
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.53*]
+Parent="Opera 7.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.53*FreeBSD*)*]
+Parent="Opera 7.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Linux*)*]
+Parent="Opera 7.53"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_4*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.4*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_5*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.5*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_6*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.6*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_7*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.7*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_8*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.8*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_9*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.9*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10_10*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X 10.10*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Mac OS X*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*SunOS*)*]
+Parent="Opera 7.53"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 5.0*)*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.53*Windows 2000*)*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.53*Win 9x 4.90*)*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.53*Windows ME*)*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.53*Windows 95*)*]
+Parent="Opera 7.53"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.53*Windows 98*)*]
+Parent="Opera 7.53"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 4.0*)*]
+Parent="Opera 7.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 5.1*)*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 5.2*)*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 6.0*)*]
+Parent="Opera 7.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 6.1*)*]
+Parent="Opera 7.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 6.2*)*]
+Parent="Opera 7.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.53*Windows NT 6.3*)*]
+Parent="Opera 7.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.53*(*FreeBSD*)*]
+Parent="Opera 7.53"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.53*(*Linux*)*]
+Parent="Opera 7.53"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_4*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.4*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_5*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.5*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_6*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.6*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_7*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.7*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_8*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.8*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_9*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.9*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10_10*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X 10.10*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.53*(*Mac OS X*)*]
+Parent="Opera 7.53"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.53*(*SunOS*)*]
+Parent="Opera 7.53"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.53*(*Windows NT 5.0*)*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.53*(*Windows 2000*)*]
+Parent="Opera 7.53"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.53*(*Win 9x 4.90*)*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.53*(*Windows ME*)*]
+Parent="Opera 7.53"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.53*(*Windows 95*)*]
+Parent="Opera 7.53"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.53*(*Windows 98*)*]
+Parent="Opera 7.53"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.53*(*Windows NT 4.0*)*]
+Parent="Opera 7.53"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.53*(*Windows NT 5.1*)*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.53*(*Windows NT 5.2*)*]
+Parent="Opera 7.53"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.53*(*Windows NT 6.0*)*]
+Parent="Opera 7.53"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.53*(*Windows NT 6.1*)*]
+Parent="Opera 7.53"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.53*(*Windows NT 6.2*)*]
+Parent="Opera 7.53"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.53*(*Windows NT 6.3*)*]
+Parent="Opera 7.53"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 7.54
+
+[Opera 7.54]
+Parent="DefaultProperties"
+Comment="Opera 7.54"
+Browser="Opera"
+Version="7.54"
+MajorVer=7
+MinorVer=54
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?7.54*]
+Parent="Opera 7.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?7.54*FreeBSD*)*]
+Parent="Opera 7.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Linux*)*]
+Parent="Opera 7.54"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_4*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.4*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_5*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.5*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_6*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.6*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_7*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.7*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_8*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.8*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_9*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.9*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10_10*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X 10.10*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Mac OS X*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*SunOS*)*]
+Parent="Opera 7.54"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 5.0*)*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.54*Windows 2000*)*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?7.54*Win 9x 4.90*)*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.54*Windows ME*)*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?7.54*Windows 95*)*]
+Parent="Opera 7.54"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?7.54*Windows 98*)*]
+Parent="Opera 7.54"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 4.0*)*]
+Parent="Opera 7.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 5.1*)*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 5.2*)*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 6.0*)*]
+Parent="Opera 7.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 6.1*)*]
+Parent="Opera 7.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 6.2*)*]
+Parent="Opera 7.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?7.54*Windows NT 6.3*)*]
+Parent="Opera 7.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/7.54*(*FreeBSD*)*]
+Parent="Opera 7.54"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/7.54*(*Linux*)*]
+Parent="Opera 7.54"
+Platform="Linux"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_4*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.4*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_5*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.5*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_6*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.6*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_7*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.7*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_8*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.8*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_9*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.9*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10_10*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X 10.10*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/7.54*(*Mac OS X*)*]
+Parent="Opera 7.54"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/7.54*(*SunOS*)*]
+Parent="Opera 7.54"
+Platform="SunOS"
+Win32="false"
+
+[Opera/7.54*(*Windows NT 5.0*)*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.54*(*Windows 2000*)*]
+Parent="Opera 7.54"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/7.54*(*Win 9x 4.90*)*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.54*(*Windows ME*)*]
+Parent="Opera 7.54"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/7.54*(*Windows 95*)*]
+Parent="Opera 7.54"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/7.54*(*Windows 98*)*]
+Parent="Opera 7.54"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/7.54*(*Windows NT 4.0*)*]
+Parent="Opera 7.54"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/7.54*(*Windows NT 5.1*)*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/7.54*(*Windows NT 5.2*)*]
+Parent="Opera 7.54"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/7.54*(*Windows NT 6.0*)*]
+Parent="Opera 7.54"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/7.54*(*Windows NT 6.1*)*]
+Parent="Opera 7.54"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/7.54*(*Windows NT 6.2*)*]
+Parent="Opera 7.54"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/7.54*(*Windows NT 6.3*)*]
+Parent="Opera 7.54"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Baidu Mobile
+
+[Baidu Mobile]
+Parent="DefaultProperties"
+Comment="Baidu"
+Browser="Baidu Mobile Search"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+Crawler="true"
+
+[*Baiduspider-mobile*]
+Parent="Baidu Mobile"
+
+[DoCoMo/2.0 P05A(c100;TB;W24H15) (compatible; BaiduMobaider/1.0; ?http://www.baidu.jp/spider/)]
+Parent="Baidu Mobile"
+
+[Mozilla/5.0 (*Linux*Android 2.3*) AppleWebKit/* (KHTML,like Gecko) Version/4.0 Mobile Safari/* (compatible; +http://www.baidu.com/search/*]
+Parent="Baidu Mobile"
+Platform="Android"
+Platform_Version="2.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.00
+
+[Opera 6.00]
+Parent="DefaultProperties"
+Comment="Opera 6.00"
+Browser="Opera"
+Version="6.00"
+MajorVer=6
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.00*]
+Parent="Opera 6.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.00*FreeBSD*)*]
+Parent="Opera 6.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Linux*)*]
+Parent="Opera 6.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_4*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.4*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_5*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.5*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_6*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.6*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_7*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.7*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_8*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.8*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_9*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.9*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10_10*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X 10.10*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Mac OS X*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*SunOS*)*]
+Parent="Opera 6.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 5.0*)*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.00*Windows 2000*)*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.00*Win 9x 4.90*)*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.00*Windows ME*)*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.00*Windows 95*)*]
+Parent="Opera 6.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.00*Windows 98*)*]
+Parent="Opera 6.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 4.0*)*]
+Parent="Opera 6.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 5.1*)*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 5.2*)*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 6.0*)*]
+Parent="Opera 6.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 6.1*)*]
+Parent="Opera 6.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 6.2*)*]
+Parent="Opera 6.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.00*Windows NT 6.3*)*]
+Parent="Opera 6.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.00*(*FreeBSD*)*]
+Parent="Opera 6.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.00*(*Linux*)*]
+Parent="Opera 6.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_4*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.4*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_5*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.5*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_6*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.6*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_7*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.7*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_8*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.8*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_9*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.9*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10_10*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X 10.10*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.00*(*Mac OS X*)*]
+Parent="Opera 6.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.00*(*SunOS*)*]
+Parent="Opera 6.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.00*(*Windows NT 5.0*)*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.00*(*Windows 2000*)*]
+Parent="Opera 6.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.00*(*Win 9x 4.90*)*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.00*(*Windows ME*)*]
+Parent="Opera 6.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.00*(*Windows 95*)*]
+Parent="Opera 6.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.00*(*Windows 98*)*]
+Parent="Opera 6.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.00*(*Windows NT 4.0*)*]
+Parent="Opera 6.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.00*(*Windows NT 5.1*)*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.00*(*Windows NT 5.2*)*]
+Parent="Opera 6.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.00*(*Windows NT 6.0*)*]
+Parent="Opera 6.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.00*(*Windows NT 6.1*)*]
+Parent="Opera 6.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.00*(*Windows NT 6.2*)*]
+Parent="Opera 6.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.00*(*Windows NT 6.3*)*]
+Parent="Opera 6.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.01
+
+[Opera 6.01]
+Parent="DefaultProperties"
+Comment="Opera 6.01"
+Browser="Opera"
+Version="6.01"
+MajorVer=6
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.01*]
+Parent="Opera 6.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.01*FreeBSD*)*]
+Parent="Opera 6.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Linux*)*]
+Parent="Opera 6.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_4*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.4*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_5*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.5*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_6*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.6*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_7*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.7*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_8*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.8*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_9*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.9*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10_10*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X 10.10*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Mac OS X*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*SunOS*)*]
+Parent="Opera 6.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 5.0*)*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.01*Windows 2000*)*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.01*Win 9x 4.90*)*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.01*Windows ME*)*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.01*Windows 95*)*]
+Parent="Opera 6.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.01*Windows 98*)*]
+Parent="Opera 6.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 4.0*)*]
+Parent="Opera 6.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 5.1*)*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 5.2*)*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 6.0*)*]
+Parent="Opera 6.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 6.1*)*]
+Parent="Opera 6.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 6.2*)*]
+Parent="Opera 6.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.01*Windows NT 6.3*)*]
+Parent="Opera 6.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.01*(*FreeBSD*)*]
+Parent="Opera 6.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.01*(*Linux*)*]
+Parent="Opera 6.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_4*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.4*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_5*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.5*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_6*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.6*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_7*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.7*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_8*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.8*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_9*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.9*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10_10*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X 10.10*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.01*(*Mac OS X*)*]
+Parent="Opera 6.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.01*(*SunOS*)*]
+Parent="Opera 6.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.01*(*Windows NT 5.0*)*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.01*(*Windows 2000*)*]
+Parent="Opera 6.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.01*(*Win 9x 4.90*)*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.01*(*Windows ME*)*]
+Parent="Opera 6.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.01*(*Windows 95*)*]
+Parent="Opera 6.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.01*(*Windows 98*)*]
+Parent="Opera 6.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.01*(*Windows NT 4.0*)*]
+Parent="Opera 6.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.01*(*Windows NT 5.1*)*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.01*(*Windows NT 5.2*)*]
+Parent="Opera 6.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.01*(*Windows NT 6.0*)*]
+Parent="Opera 6.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.01*(*Windows NT 6.1*)*]
+Parent="Opera 6.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.01*(*Windows NT 6.2*)*]
+Parent="Opera 6.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.01*(*Windows NT 6.3*)*]
+Parent="Opera 6.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.02
+
+[Opera 6.02]
+Parent="DefaultProperties"
+Comment="Opera 6.02"
+Browser="Opera"
+Version="6.02"
+MajorVer=6
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.02*]
+Parent="Opera 6.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.02*FreeBSD*)*]
+Parent="Opera 6.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Linux*)*]
+Parent="Opera 6.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_4*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.4*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_5*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.5*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_6*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.6*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_7*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.7*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_8*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.8*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_9*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.9*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10_10*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X 10.10*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Mac OS X*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*SunOS*)*]
+Parent="Opera 6.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 5.0*)*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.02*Windows 2000*)*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.02*Win 9x 4.90*)*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.02*Windows ME*)*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.02*Windows 95*)*]
+Parent="Opera 6.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.02*Windows 98*)*]
+Parent="Opera 6.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 4.0*)*]
+Parent="Opera 6.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 5.1*)*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 5.2*)*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 6.0*)*]
+Parent="Opera 6.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 6.1*)*]
+Parent="Opera 6.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 6.2*)*]
+Parent="Opera 6.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.02*Windows NT 6.3*)*]
+Parent="Opera 6.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.02*(*FreeBSD*)*]
+Parent="Opera 6.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.02*(*Linux*)*]
+Parent="Opera 6.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_4*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.4*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_5*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.5*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_6*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.6*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_7*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.7*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_8*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.8*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_9*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.9*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10_10*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X 10.10*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.02*(*Mac OS X*)*]
+Parent="Opera 6.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.02*(*SunOS*)*]
+Parent="Opera 6.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.02*(*Windows NT 5.0*)*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.02*(*Windows 2000*)*]
+Parent="Opera 6.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.02*(*Win 9x 4.90*)*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.02*(*Windows ME*)*]
+Parent="Opera 6.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.02*(*Windows 95*)*]
+Parent="Opera 6.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.02*(*Windows 98*)*]
+Parent="Opera 6.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.02*(*Windows NT 4.0*)*]
+Parent="Opera 6.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.02*(*Windows NT 5.1*)*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.02*(*Windows NT 5.2*)*]
+Parent="Opera 6.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.02*(*Windows NT 6.0*)*]
+Parent="Opera 6.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.02*(*Windows NT 6.1*)*]
+Parent="Opera 6.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.02*(*Windows NT 6.2*)*]
+Parent="Opera 6.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.02*(*Windows NT 6.3*)*]
+Parent="Opera 6.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.03
+
+[Opera 6.03]
+Parent="DefaultProperties"
+Comment="Opera 6.03"
+Browser="Opera"
+Version="6.03"
+MajorVer=6
+MinorVer=03
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.03*]
+Parent="Opera 6.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.03*FreeBSD*)*]
+Parent="Opera 6.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Linux*)*]
+Parent="Opera 6.03"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_4*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.4*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_5*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.5*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_6*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.6*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_7*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.7*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_8*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.8*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_9*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.9*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10_10*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X 10.10*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Mac OS X*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*SunOS*)*]
+Parent="Opera 6.03"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 5.0*)*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.03*Windows 2000*)*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.03*Win 9x 4.90*)*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.03*Windows ME*)*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.03*Windows 95*)*]
+Parent="Opera 6.03"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.03*Windows 98*)*]
+Parent="Opera 6.03"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 4.0*)*]
+Parent="Opera 6.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 5.1*)*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 5.2*)*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 6.0*)*]
+Parent="Opera 6.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 6.1*)*]
+Parent="Opera 6.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 6.2*)*]
+Parent="Opera 6.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.03*Windows NT 6.3*)*]
+Parent="Opera 6.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.03*(*FreeBSD*)*]
+Parent="Opera 6.03"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.03*(*Linux*)*]
+Parent="Opera 6.03"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_4*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.4*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_5*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.5*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_6*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.6*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_7*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.7*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_8*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.8*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_9*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.9*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10_10*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X 10.10*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.03*(*Mac OS X*)*]
+Parent="Opera 6.03"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.03*(*SunOS*)*]
+Parent="Opera 6.03"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.03*(*Windows NT 5.0*)*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.03*(*Windows 2000*)*]
+Parent="Opera 6.03"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.03*(*Win 9x 4.90*)*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.03*(*Windows ME*)*]
+Parent="Opera 6.03"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.03*(*Windows 95*)*]
+Parent="Opera 6.03"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.03*(*Windows 98*)*]
+Parent="Opera 6.03"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.03*(*Windows NT 4.0*)*]
+Parent="Opera 6.03"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.03*(*Windows NT 5.1*)*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.03*(*Windows NT 5.2*)*]
+Parent="Opera 6.03"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.03*(*Windows NT 6.0*)*]
+Parent="Opera 6.03"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.03*(*Windows NT 6.1*)*]
+Parent="Opera 6.03"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.03*(*Windows NT 6.2*)*]
+Parent="Opera 6.03"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.03*(*Windows NT 6.3*)*]
+Parent="Opera 6.03"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.04
+
+[Opera 6.04]
+Parent="DefaultProperties"
+Comment="Opera 6.04"
+Browser="Opera"
+Version="6.04"
+MajorVer=6
+MinorVer=04
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.04*]
+Parent="Opera 6.04"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.04*FreeBSD*)*]
+Parent="Opera 6.04"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Linux*)*]
+Parent="Opera 6.04"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_4*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.4*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_5*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.5*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_6*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.6*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_7*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.7*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_8*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.8*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_9*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.9*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10_10*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X 10.10*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Mac OS X*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*SunOS*)*]
+Parent="Opera 6.04"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 5.0*)*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.04*Windows 2000*)*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.04*Win 9x 4.90*)*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.04*Windows ME*)*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.04*Windows 95*)*]
+Parent="Opera 6.04"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.04*Windows 98*)*]
+Parent="Opera 6.04"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 4.0*)*]
+Parent="Opera 6.04"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 5.1*)*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 5.2*)*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 6.0*)*]
+Parent="Opera 6.04"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 6.1*)*]
+Parent="Opera 6.04"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 6.2*)*]
+Parent="Opera 6.04"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.04*Windows NT 6.3*)*]
+Parent="Opera 6.04"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.04*(*FreeBSD*)*]
+Parent="Opera 6.04"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.04*(*Linux*)*]
+Parent="Opera 6.04"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_4*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.4*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_5*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.5*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_6*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.6*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_7*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.7*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_8*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.8*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_9*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.9*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10_10*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X 10.10*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.04*(*Mac OS X*)*]
+Parent="Opera 6.04"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.04*(*SunOS*)*]
+Parent="Opera 6.04"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.04*(*Windows NT 5.0*)*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.04*(*Windows 2000*)*]
+Parent="Opera 6.04"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.04*(*Win 9x 4.90*)*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.04*(*Windows ME*)*]
+Parent="Opera 6.04"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.04*(*Windows 95*)*]
+Parent="Opera 6.04"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.04*(*Windows 98*)*]
+Parent="Opera 6.04"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.04*(*Windows NT 4.0*)*]
+Parent="Opera 6.04"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.04*(*Windows NT 5.1*)*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.04*(*Windows NT 5.2*)*]
+Parent="Opera 6.04"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.04*(*Windows NT 6.0*)*]
+Parent="Opera 6.04"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.04*(*Windows NT 6.1*)*]
+Parent="Opera 6.04"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.04*(*Windows NT 6.2*)*]
+Parent="Opera 6.04"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.04*(*Windows NT 6.3*)*]
+Parent="Opera 6.04"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.05
+
+[Opera 6.05]
+Parent="DefaultProperties"
+Comment="Opera 6.05"
+Browser="Opera"
+Version="6.05"
+MajorVer=6
+MinorVer=05
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.05*]
+Parent="Opera 6.05"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.05*FreeBSD*)*]
+Parent="Opera 6.05"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Linux*)*]
+Parent="Opera 6.05"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_4*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.4*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_5*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.5*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_6*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.6*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_7*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.7*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_8*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.8*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_9*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.9*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10_10*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X 10.10*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Mac OS X*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*SunOS*)*]
+Parent="Opera 6.05"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 5.0*)*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.05*Windows 2000*)*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.05*Win 9x 4.90*)*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.05*Windows ME*)*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.05*Windows 95*)*]
+Parent="Opera 6.05"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.05*Windows 98*)*]
+Parent="Opera 6.05"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 4.0*)*]
+Parent="Opera 6.05"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 5.1*)*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 5.2*)*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 6.0*)*]
+Parent="Opera 6.05"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 6.1*)*]
+Parent="Opera 6.05"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 6.2*)*]
+Parent="Opera 6.05"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.05*Windows NT 6.3*)*]
+Parent="Opera 6.05"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.05*(*FreeBSD*)*]
+Parent="Opera 6.05"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.05*(*Linux*)*]
+Parent="Opera 6.05"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_4*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.4*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_5*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.5*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_6*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.6*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_7*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.7*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_8*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.8*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_9*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.9*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10_10*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X 10.10*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.05*(*Mac OS X*)*]
+Parent="Opera 6.05"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.05*(*SunOS*)*]
+Parent="Opera 6.05"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.05*(*Windows NT 5.0*)*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.05*(*Windows 2000*)*]
+Parent="Opera 6.05"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.05*(*Win 9x 4.90*)*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.05*(*Windows ME*)*]
+Parent="Opera 6.05"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.05*(*Windows 95*)*]
+Parent="Opera 6.05"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.05*(*Windows 98*)*]
+Parent="Opera 6.05"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.05*(*Windows NT 4.0*)*]
+Parent="Opera 6.05"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.05*(*Windows NT 5.1*)*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.05*(*Windows NT 5.2*)*]
+Parent="Opera 6.05"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.05*(*Windows NT 6.0*)*]
+Parent="Opera 6.05"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.05*(*Windows NT 6.1*)*]
+Parent="Opera 6.05"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.05*(*Windows NT 6.2*)*]
+Parent="Opera 6.05"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.05*(*Windows NT 6.3*)*]
+Parent="Opera 6.05"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 6.06
+
+[Opera 6.06]
+Parent="DefaultProperties"
+Comment="Opera 6.06"
+Browser="Opera"
+Version="6.06"
+MajorVer=6
+MinorVer=06
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?6.06*]
+Parent="Opera 6.06"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?6.06*FreeBSD*)*]
+Parent="Opera 6.06"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Linux*)*]
+Parent="Opera 6.06"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_4*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.4*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_5*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.5*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_6*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.6*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_7*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.7*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_8*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.8*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_9*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.9*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10_10*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X 10.10*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Mac OS X*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*SunOS*)*]
+Parent="Opera 6.06"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 5.0*)*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.06*Windows 2000*)*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?6.06*Win 9x 4.90*)*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.06*Windows ME*)*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?6.06*Windows 95*)*]
+Parent="Opera 6.06"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?6.06*Windows 98*)*]
+Parent="Opera 6.06"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 4.0*)*]
+Parent="Opera 6.06"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 5.1*)*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 5.2*)*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 6.0*)*]
+Parent="Opera 6.06"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 6.1*)*]
+Parent="Opera 6.06"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 6.2*)*]
+Parent="Opera 6.06"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?6.06*Windows NT 6.3*)*]
+Parent="Opera 6.06"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/6.06*(*FreeBSD*)*]
+Parent="Opera 6.06"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/6.06*(*Linux*)*]
+Parent="Opera 6.06"
+Platform="Linux"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_4*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.4*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_5*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.5*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_6*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.6*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_7*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.7*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_8*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.8*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_9*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.9*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10_10*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X 10.10*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/6.06*(*Mac OS X*)*]
+Parent="Opera 6.06"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/6.06*(*SunOS*)*]
+Parent="Opera 6.06"
+Platform="SunOS"
+Win32="false"
+
+[Opera/6.06*(*Windows NT 5.0*)*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.06*(*Windows 2000*)*]
+Parent="Opera 6.06"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/6.06*(*Win 9x 4.90*)*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.06*(*Windows ME*)*]
+Parent="Opera 6.06"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/6.06*(*Windows 95*)*]
+Parent="Opera 6.06"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/6.06*(*Windows 98*)*]
+Parent="Opera 6.06"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/6.06*(*Windows NT 4.0*)*]
+Parent="Opera 6.06"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/6.06*(*Windows NT 5.1*)*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/6.06*(*Windows NT 5.2*)*]
+Parent="Opera 6.06"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/6.06*(*Windows NT 6.0*)*]
+Parent="Opera 6.06"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/6.06*(*Windows NT 6.1*)*]
+Parent="Opera 6.06"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/6.06*(*Windows NT 6.2*)*]
+Parent="Opera 6.06"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/6.06*(*Windows NT 6.3*)*]
+Parent="Opera 6.06"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.00
+
+[Opera 5.00]
+Parent="DefaultProperties"
+Comment="Opera 5.00"
+Browser="Opera"
+Version="5.00"
+MajorVer=5
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.00*]
+Parent="Opera 5.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.00*FreeBSD*)*]
+Parent="Opera 5.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Linux*)*]
+Parent="Opera 5.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_4*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.4*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_5*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.5*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_6*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.6*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_7*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.7*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_8*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.8*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_9*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.9*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10_10*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X 10.10*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Mac OS X*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*SunOS*)*]
+Parent="Opera 5.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 5.0*)*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.00*Windows 2000*)*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.00*Win 9x 4.90*)*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.00*Windows ME*)*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.00*Windows 95*)*]
+Parent="Opera 5.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.00*Windows 98*)*]
+Parent="Opera 5.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 4.0*)*]
+Parent="Opera 5.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 5.1*)*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 5.2*)*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 6.0*)*]
+Parent="Opera 5.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 6.1*)*]
+Parent="Opera 5.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 6.2*)*]
+Parent="Opera 5.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.00*Windows NT 6.3*)*]
+Parent="Opera 5.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.00*(*FreeBSD*)*]
+Parent="Opera 5.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.00*(*Linux*)*]
+Parent="Opera 5.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_4*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.4*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_5*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.5*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_6*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.6*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_7*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.7*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_8*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.8*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_9*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.9*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10_10*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X 10.10*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.00*(*Mac OS X*)*]
+Parent="Opera 5.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.00*(*SunOS*)*]
+Parent="Opera 5.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.00*(*Windows NT 5.0*)*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.00*(*Windows 2000*)*]
+Parent="Opera 5.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.00*(*Win 9x 4.90*)*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.00*(*Windows ME*)*]
+Parent="Opera 5.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.00*(*Windows 95*)*]
+Parent="Opera 5.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.00*(*Windows 98*)*]
+Parent="Opera 5.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.00*(*Windows NT 4.0*)*]
+Parent="Opera 5.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.00*(*Windows NT 5.1*)*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.00*(*Windows NT 5.2*)*]
+Parent="Opera 5.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.00*(*Windows NT 6.0*)*]
+Parent="Opera 5.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.00*(*Windows NT 6.1*)*]
+Parent="Opera 5.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.00*(*Windows NT 6.2*)*]
+Parent="Opera 5.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.00*(*Windows NT 6.3*)*]
+Parent="Opera 5.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.01
+
+[Opera 5.01]
+Parent="DefaultProperties"
+Comment="Opera 5.01"
+Browser="Opera"
+Version="5.01"
+MajorVer=5
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.01*]
+Parent="Opera 5.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.01*FreeBSD*)*]
+Parent="Opera 5.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Linux*)*]
+Parent="Opera 5.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_4*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.4*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_5*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.5*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_6*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.6*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_7*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.7*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_8*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.8*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_9*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.9*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10_10*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X 10.10*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Mac OS X*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*SunOS*)*]
+Parent="Opera 5.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 5.0*)*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.01*Windows 2000*)*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.01*Win 9x 4.90*)*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.01*Windows ME*)*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.01*Windows 95*)*]
+Parent="Opera 5.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.01*Windows 98*)*]
+Parent="Opera 5.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 4.0*)*]
+Parent="Opera 5.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 5.1*)*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 5.2*)*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 6.0*)*]
+Parent="Opera 5.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 6.1*)*]
+Parent="Opera 5.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 6.2*)*]
+Parent="Opera 5.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.01*Windows NT 6.3*)*]
+Parent="Opera 5.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.01*(*FreeBSD*)*]
+Parent="Opera 5.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.01*(*Linux*)*]
+Parent="Opera 5.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_4*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.4*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_5*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.5*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_6*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.6*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_7*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.7*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_8*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.8*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_9*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.9*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10_10*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X 10.10*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.01*(*Mac OS X*)*]
+Parent="Opera 5.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.01*(*SunOS*)*]
+Parent="Opera 5.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.01*(*Windows NT 5.0*)*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.01*(*Windows 2000*)*]
+Parent="Opera 5.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.01*(*Win 9x 4.90*)*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.01*(*Windows ME*)*]
+Parent="Opera 5.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.01*(*Windows 95*)*]
+Parent="Opera 5.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.01*(*Windows 98*)*]
+Parent="Opera 5.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.01*(*Windows NT 4.0*)*]
+Parent="Opera 5.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.01*(*Windows NT 5.1*)*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.01*(*Windows NT 5.2*)*]
+Parent="Opera 5.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.01*(*Windows NT 6.0*)*]
+Parent="Opera 5.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.01*(*Windows NT 6.1*)*]
+Parent="Opera 5.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.01*(*Windows NT 6.2*)*]
+Parent="Opera 5.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.01*(*Windows NT 6.3*)*]
+Parent="Opera 5.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.02
+
+[Opera 5.02]
+Parent="DefaultProperties"
+Comment="Opera 5.02"
+Browser="Opera"
+Version="5.02"
+MajorVer=5
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.02*]
+Parent="Opera 5.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.02*FreeBSD*)*]
+Parent="Opera 5.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Linux*)*]
+Parent="Opera 5.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_4*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.4*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_5*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.5*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_6*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.6*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_7*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.7*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_8*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.8*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_9*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.9*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10_10*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X 10.10*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Mac OS X*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*SunOS*)*]
+Parent="Opera 5.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 5.0*)*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.02*Windows 2000*)*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.02*Win 9x 4.90*)*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.02*Windows ME*)*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.02*Windows 95*)*]
+Parent="Opera 5.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.02*Windows 98*)*]
+Parent="Opera 5.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 4.0*)*]
+Parent="Opera 5.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 5.1*)*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 5.2*)*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 6.0*)*]
+Parent="Opera 5.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 6.1*)*]
+Parent="Opera 5.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 6.2*)*]
+Parent="Opera 5.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.02*Windows NT 6.3*)*]
+Parent="Opera 5.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.02*(*FreeBSD*)*]
+Parent="Opera 5.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.02*(*Linux*)*]
+Parent="Opera 5.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_4*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.4*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_5*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.5*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_6*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.6*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_7*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.7*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_8*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.8*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_9*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.9*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10_10*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X 10.10*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.02*(*Mac OS X*)*]
+Parent="Opera 5.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.02*(*SunOS*)*]
+Parent="Opera 5.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.02*(*Windows NT 5.0*)*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.02*(*Windows 2000*)*]
+Parent="Opera 5.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.02*(*Win 9x 4.90*)*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.02*(*Windows ME*)*]
+Parent="Opera 5.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.02*(*Windows 95*)*]
+Parent="Opera 5.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.02*(*Windows 98*)*]
+Parent="Opera 5.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.02*(*Windows NT 4.0*)*]
+Parent="Opera 5.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.02*(*Windows NT 5.1*)*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.02*(*Windows NT 5.2*)*]
+Parent="Opera 5.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.02*(*Windows NT 6.0*)*]
+Parent="Opera 5.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.02*(*Windows NT 6.1*)*]
+Parent="Opera 5.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.02*(*Windows NT 6.2*)*]
+Parent="Opera 5.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.02*(*Windows NT 6.3*)*]
+Parent="Opera 5.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.10
+
+[Opera 5.10]
+Parent="DefaultProperties"
+Comment="Opera 5.10"
+Browser="Opera"
+Version="5.10"
+MajorVer=5
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.10*]
+Parent="Opera 5.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.10*FreeBSD*)*]
+Parent="Opera 5.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Linux*)*]
+Parent="Opera 5.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_4*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.4*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_5*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.5*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_6*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.6*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_7*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.7*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_8*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.8*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_9*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.9*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10_10*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X 10.10*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Mac OS X*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*SunOS*)*]
+Parent="Opera 5.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 5.0*)*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.10*Windows 2000*)*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.10*Win 9x 4.90*)*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.10*Windows ME*)*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.10*Windows 95*)*]
+Parent="Opera 5.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.10*Windows 98*)*]
+Parent="Opera 5.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 4.0*)*]
+Parent="Opera 5.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 5.1*)*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 5.2*)*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 6.0*)*]
+Parent="Opera 5.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 6.1*)*]
+Parent="Opera 5.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 6.2*)*]
+Parent="Opera 5.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.10*Windows NT 6.3*)*]
+Parent="Opera 5.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.10*(*FreeBSD*)*]
+Parent="Opera 5.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.10*(*Linux*)*]
+Parent="Opera 5.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_4*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.4*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_5*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.5*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_6*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.6*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_7*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.7*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_8*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.8*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_9*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.9*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10_10*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X 10.10*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.10*(*Mac OS X*)*]
+Parent="Opera 5.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.10*(*SunOS*)*]
+Parent="Opera 5.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.10*(*Windows NT 5.0*)*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.10*(*Windows 2000*)*]
+Parent="Opera 5.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.10*(*Win 9x 4.90*)*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.10*(*Windows ME*)*]
+Parent="Opera 5.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.10*(*Windows 95*)*]
+Parent="Opera 5.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.10*(*Windows 98*)*]
+Parent="Opera 5.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.10*(*Windows NT 4.0*)*]
+Parent="Opera 5.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.10*(*Windows NT 5.1*)*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.10*(*Windows NT 5.2*)*]
+Parent="Opera 5.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.10*(*Windows NT 6.0*)*]
+Parent="Opera 5.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.10*(*Windows NT 6.1*)*]
+Parent="Opera 5.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.10*(*Windows NT 6.2*)*]
+Parent="Opera 5.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.10*(*Windows NT 6.3*)*]
+Parent="Opera 5.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.11
+
+[Opera 5.11]
+Parent="DefaultProperties"
+Comment="Opera 5.11"
+Browser="Opera"
+Version="5.11"
+MajorVer=5
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.11*]
+Parent="Opera 5.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.11*FreeBSD*)*]
+Parent="Opera 5.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Linux*)*]
+Parent="Opera 5.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_4*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.4*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_5*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.5*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_6*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.6*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_7*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.7*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_8*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.8*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_9*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.9*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10_10*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X 10.10*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Mac OS X*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*SunOS*)*]
+Parent="Opera 5.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 5.0*)*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.11*Windows 2000*)*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.11*Win 9x 4.90*)*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.11*Windows ME*)*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.11*Windows 95*)*]
+Parent="Opera 5.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.11*Windows 98*)*]
+Parent="Opera 5.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 4.0*)*]
+Parent="Opera 5.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 5.1*)*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 5.2*)*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 6.0*)*]
+Parent="Opera 5.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 6.1*)*]
+Parent="Opera 5.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 6.2*)*]
+Parent="Opera 5.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.11*Windows NT 6.3*)*]
+Parent="Opera 5.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.11*(*FreeBSD*)*]
+Parent="Opera 5.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.11*(*Linux*)*]
+Parent="Opera 5.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_4*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.4*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_5*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.5*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_6*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.6*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_7*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.7*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_8*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.8*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_9*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.9*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10_10*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X 10.10*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.11*(*Mac OS X*)*]
+Parent="Opera 5.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.11*(*SunOS*)*]
+Parent="Opera 5.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.11*(*Windows NT 5.0*)*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.11*(*Windows 2000*)*]
+Parent="Opera 5.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.11*(*Win 9x 4.90*)*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.11*(*Windows ME*)*]
+Parent="Opera 5.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.11*(*Windows 95*)*]
+Parent="Opera 5.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.11*(*Windows 98*)*]
+Parent="Opera 5.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.11*(*Windows NT 4.0*)*]
+Parent="Opera 5.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.11*(*Windows NT 5.1*)*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.11*(*Windows NT 5.2*)*]
+Parent="Opera 5.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.11*(*Windows NT 6.0*)*]
+Parent="Opera 5.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.11*(*Windows NT 6.1*)*]
+Parent="Opera 5.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.11*(*Windows NT 6.2*)*]
+Parent="Opera 5.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.11*(*Windows NT 6.3*)*]
+Parent="Opera 5.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 5.12
+
+[Opera 5.12]
+Parent="DefaultProperties"
+Comment="Opera 5.12"
+Browser="Opera"
+Version="5.12"
+MajorVer=5
+MinorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?5.12*]
+Parent="Opera 5.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?5.12*FreeBSD*)*]
+Parent="Opera 5.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Linux*)*]
+Parent="Opera 5.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_4*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.4*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_5*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.5*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_6*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.6*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_7*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.7*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_8*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.8*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_9*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.9*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10_10*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X 10.10*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Mac OS X*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*SunOS*)*]
+Parent="Opera 5.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 5.0*)*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.12*Windows 2000*)*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?5.12*Win 9x 4.90*)*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.12*Windows ME*)*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?5.12*Windows 95*)*]
+Parent="Opera 5.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?5.12*Windows 98*)*]
+Parent="Opera 5.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 4.0*)*]
+Parent="Opera 5.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 5.1*)*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 5.2*)*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 6.0*)*]
+Parent="Opera 5.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 6.1*)*]
+Parent="Opera 5.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 6.2*)*]
+Parent="Opera 5.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?5.12*Windows NT 6.3*)*]
+Parent="Opera 5.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/5.12*(*FreeBSD*)*]
+Parent="Opera 5.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/5.12*(*Linux*)*]
+Parent="Opera 5.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_4*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.4*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_5*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.5*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_6*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.6*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_7*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.7*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_8*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.8*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_9*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.9*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10_10*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X 10.10*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/5.12*(*Mac OS X*)*]
+Parent="Opera 5.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/5.12*(*SunOS*)*]
+Parent="Opera 5.12"
+Platform="SunOS"
+Win32="false"
+
+[Opera/5.12*(*Windows NT 5.0*)*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.12*(*Windows 2000*)*]
+Parent="Opera 5.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/5.12*(*Win 9x 4.90*)*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.12*(*Windows ME*)*]
+Parent="Opera 5.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/5.12*(*Windows 95*)*]
+Parent="Opera 5.12"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/5.12*(*Windows 98*)*]
+Parent="Opera 5.12"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/5.12*(*Windows NT 4.0*)*]
+Parent="Opera 5.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/5.12*(*Windows NT 5.1*)*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/5.12*(*Windows NT 5.2*)*]
+Parent="Opera 5.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/5.12*(*Windows NT 6.0*)*]
+Parent="Opera 5.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/5.12*(*Windows NT 6.1*)*]
+Parent="Opera 5.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/5.12*(*Windows NT 6.2*)*]
+Parent="Opera 5.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/5.12*(*Windows NT 6.3*)*]
+Parent="Opera 5.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 4.00
+
+[Opera 4.00]
+Parent="DefaultProperties"
+Comment="Opera 4.00"
+Browser="Opera"
+Version="4.00"
+MajorVer=4
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?4.00*]
+Parent="Opera 4.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?4.00*FreeBSD*)*]
+Parent="Opera 4.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Linux*)*]
+Parent="Opera 4.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_4*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.4*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_5*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.5*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_6*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.6*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_7*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.7*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_8*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.8*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_9*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.9*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10_10*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X 10.10*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Mac OS X*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*SunOS*)*]
+Parent="Opera 4.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 5.0*)*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.00*Windows 2000*)*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.00*Win 9x 4.90*)*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.00*Windows ME*)*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.00*Windows 95*)*]
+Parent="Opera 4.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?4.00*Windows 98*)*]
+Parent="Opera 4.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 4.0*)*]
+Parent="Opera 4.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 5.1*)*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 5.2*)*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 6.0*)*]
+Parent="Opera 4.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 6.1*)*]
+Parent="Opera 4.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 6.2*)*]
+Parent="Opera 4.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?4.00*Windows NT 6.3*)*]
+Parent="Opera 4.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/4.00*(*FreeBSD*)*]
+Parent="Opera 4.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/4.00*(*Linux*)*]
+Parent="Opera 4.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_4*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.4*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_5*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.5*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_6*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.6*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_7*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.7*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_8*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.8*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_9*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.9*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10_10*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X 10.10*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.00*(*Mac OS X*)*]
+Parent="Opera 4.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/4.00*(*SunOS*)*]
+Parent="Opera 4.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/4.00*(*Windows NT 5.0*)*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.00*(*Windows 2000*)*]
+Parent="Opera 4.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.00*(*Win 9x 4.90*)*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.00*(*Windows ME*)*]
+Parent="Opera 4.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.00*(*Windows 95*)*]
+Parent="Opera 4.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/4.00*(*Windows 98*)*]
+Parent="Opera 4.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/4.00*(*Windows NT 4.0*)*]
+Parent="Opera 4.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/4.00*(*Windows NT 5.1*)*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/4.00*(*Windows NT 5.2*)*]
+Parent="Opera 4.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/4.00*(*Windows NT 6.0*)*]
+Parent="Opera 4.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/4.00*(*Windows NT 6.1*)*]
+Parent="Opera 4.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/4.00*(*Windows NT 6.2*)*]
+Parent="Opera 4.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/4.00*(*Windows NT 6.3*)*]
+Parent="Opera 4.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 4.01
+
+[Opera 4.01]
+Parent="DefaultProperties"
+Comment="Opera 4.01"
+Browser="Opera"
+Version="4.01"
+MajorVer=4
+MinorVer=01
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?4.01*]
+Parent="Opera 4.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?4.01*FreeBSD*)*]
+Parent="Opera 4.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Linux*)*]
+Parent="Opera 4.01"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_4*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.4*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_5*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.5*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_6*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.6*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_7*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.7*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_8*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.8*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_9*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.9*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10_10*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X 10.10*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Mac OS X*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*SunOS*)*]
+Parent="Opera 4.01"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 5.0*)*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.01*Windows 2000*)*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.01*Win 9x 4.90*)*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.01*Windows ME*)*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.01*Windows 95*)*]
+Parent="Opera 4.01"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?4.01*Windows 98*)*]
+Parent="Opera 4.01"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 4.0*)*]
+Parent="Opera 4.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 5.1*)*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 5.2*)*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 6.0*)*]
+Parent="Opera 4.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 6.1*)*]
+Parent="Opera 4.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 6.2*)*]
+Parent="Opera 4.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?4.01*Windows NT 6.3*)*]
+Parent="Opera 4.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/4.01*(*FreeBSD*)*]
+Parent="Opera 4.01"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/4.01*(*Linux*)*]
+Parent="Opera 4.01"
+Platform="Linux"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_4*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.4*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_5*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.5*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_6*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.6*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_7*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.7*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_8*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.8*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_9*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.9*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10_10*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X 10.10*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.01*(*Mac OS X*)*]
+Parent="Opera 4.01"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/4.01*(*SunOS*)*]
+Parent="Opera 4.01"
+Platform="SunOS"
+Win32="false"
+
+[Opera/4.01*(*Windows NT 5.0*)*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.01*(*Windows 2000*)*]
+Parent="Opera 4.01"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.01*(*Win 9x 4.90*)*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.01*(*Windows ME*)*]
+Parent="Opera 4.01"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.01*(*Windows 95*)*]
+Parent="Opera 4.01"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/4.01*(*Windows 98*)*]
+Parent="Opera 4.01"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/4.01*(*Windows NT 4.0*)*]
+Parent="Opera 4.01"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/4.01*(*Windows NT 5.1*)*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/4.01*(*Windows NT 5.2*)*]
+Parent="Opera 4.01"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/4.01*(*Windows NT 6.0*)*]
+Parent="Opera 4.01"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/4.01*(*Windows NT 6.1*)*]
+Parent="Opera 4.01"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/4.01*(*Windows NT 6.2*)*]
+Parent="Opera 4.01"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/4.01*(*Windows NT 6.3*)*]
+Parent="Opera 4.01"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 4.02
+
+[Opera 4.02]
+Parent="DefaultProperties"
+Comment="Opera 4.02"
+Browser="Opera"
+Version="4.02"
+MajorVer=4
+MinorVer=02
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?4.02*]
+Parent="Opera 4.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?4.02*FreeBSD*)*]
+Parent="Opera 4.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Linux*)*]
+Parent="Opera 4.02"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_4*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.4*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_5*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.5*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_6*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.6*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_7*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.7*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_8*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.8*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_9*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.9*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10_10*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X 10.10*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Mac OS X*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*SunOS*)*]
+Parent="Opera 4.02"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 5.0*)*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.02*Windows 2000*)*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?4.02*Win 9x 4.90*)*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.02*Windows ME*)*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?4.02*Windows 95*)*]
+Parent="Opera 4.02"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?4.02*Windows 98*)*]
+Parent="Opera 4.02"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 4.0*)*]
+Parent="Opera 4.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 5.1*)*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 5.2*)*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 6.0*)*]
+Parent="Opera 4.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 6.1*)*]
+Parent="Opera 4.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 6.2*)*]
+Parent="Opera 4.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?4.02*Windows NT 6.3*)*]
+Parent="Opera 4.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/4.02*(*FreeBSD*)*]
+Parent="Opera 4.02"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/4.02*(*Linux*)*]
+Parent="Opera 4.02"
+Platform="Linux"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_4*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.4*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_5*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.5*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_6*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.6*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_7*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.7*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_8*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.8*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_9*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.9*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10_10*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X 10.10*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/4.02*(*Mac OS X*)*]
+Parent="Opera 4.02"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/4.02*(*SunOS*)*]
+Parent="Opera 4.02"
+Platform="SunOS"
+Win32="false"
+
+[Opera/4.02*(*Windows NT 5.0*)*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.02*(*Windows 2000*)*]
+Parent="Opera 4.02"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/4.02*(*Win 9x 4.90*)*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.02*(*Windows ME*)*]
+Parent="Opera 4.02"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/4.02*(*Windows 95*)*]
+Parent="Opera 4.02"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/4.02*(*Windows 98*)*]
+Parent="Opera 4.02"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/4.02*(*Windows NT 4.0*)*]
+Parent="Opera 4.02"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/4.02*(*Windows NT 5.1*)*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/4.02*(*Windows NT 5.2*)*]
+Parent="Opera 4.02"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/4.02*(*Windows NT 6.0*)*]
+Parent="Opera 4.02"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/4.02*(*Windows NT 6.1*)*]
+Parent="Opera 4.02"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/4.02*(*Windows NT 6.2*)*]
+Parent="Opera 4.02"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/4.02*(*Windows NT 6.3*)*]
+Parent="Opera 4.02"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.00
+
+[Opera 3.00]
+Parent="DefaultProperties"
+Comment="Opera 3.00"
+Browser="Opera"
+Version="3.00"
+MajorVer=3
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.00*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.00*FreeBSD*)*]
+Parent="Opera 3.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Linux*)*]
+Parent="Opera 3.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_4*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.4*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_5*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.5*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_6*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.6*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_7*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.7*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_8*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.8*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_9*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.9*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10_10*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X 10.10*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Mac OS X*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*SunOS*)*]
+Parent="Opera 3.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 5.0*)*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.00*Windows 2000*)*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.00*Win 9x 4.90*)*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.00*Windows ME*)*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.00*Windows 95*)*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.00*Windows 98*)*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 4.0*)*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 5.1*)*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 5.2*)*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 6.0*)*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 6.1*)*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 6.2*)*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.00*Windows NT 6.3*)*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.00*(*FreeBSD*)*]
+Parent="Opera 3.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.00*(*Linux*)*]
+Parent="Opera 3.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_4*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.4*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_5*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.5*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_6*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.6*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_7*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.7*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_8*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.8*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_9*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.9*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10_10*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X 10.10*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.00*(*Mac OS X*)*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.00*(*SunOS*)*]
+Parent="Opera 3.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.00*(*Windows NT 5.0*)*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.00*(*Windows 2000*)*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.00*(*Win 9x 4.90*)*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.00*(*Windows ME*)*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.00*(*Windows 95*)*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.00*(*Windows 98*)*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.00*(*Windows NT 4.0*)*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.00*(*Windows NT 5.1*)*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.00*(*Windows NT 5.2*)*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.00*(*Windows NT 6.0*)*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.00*(*Windows NT 6.1*)*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.00*(*Windows NT 6.2*)*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.00*(*Windows NT 6.3*)*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.00*]
+Parent="Opera 3.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.00*]
+Parent="Opera 3.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.00*]
+Parent="Opera 3.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.00*]
+Parent="Opera 3.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.00*]
+Parent="Opera 3.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.00*]
+Parent="Opera 3.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.10
+
+[Opera 3.10]
+Parent="DefaultProperties"
+Comment="Opera 3.10"
+Browser="Opera"
+Version="3.10"
+MajorVer=3
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.10*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.10*FreeBSD*)*]
+Parent="Opera 3.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Linux*)*]
+Parent="Opera 3.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_4*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.4*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_5*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.5*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_6*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.6*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_7*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.7*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_8*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.8*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_9*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.9*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10_10*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X 10.10*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Mac OS X*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*SunOS*)*]
+Parent="Opera 3.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 5.0*)*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.10*Windows 2000*)*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.10*Win 9x 4.90*)*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.10*Windows ME*)*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.10*Windows 95*)*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.10*Windows 98*)*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 4.0*)*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 5.1*)*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 5.2*)*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 6.0*)*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 6.1*)*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 6.2*)*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.10*Windows NT 6.3*)*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.10*(*FreeBSD*)*]
+Parent="Opera 3.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.10*(*Linux*)*]
+Parent="Opera 3.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_4*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.4*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_5*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.5*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_6*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.6*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_7*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.7*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_8*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.8*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_9*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.9*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10_10*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X 10.10*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.10*(*Mac OS X*)*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.10*(*SunOS*)*]
+Parent="Opera 3.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.10*(*Windows NT 5.0*)*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.10*(*Windows 2000*)*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.10*(*Win 9x 4.90*)*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.10*(*Windows ME*)*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.10*(*Windows 95*)*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.10*(*Windows 98*)*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.10*(*Windows NT 4.0*)*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.10*(*Windows NT 5.1*)*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.10*(*Windows NT 5.2*)*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.10*(*Windows NT 6.0*)*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.10*(*Windows NT 6.1*)*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.10*(*Windows NT 6.2*)*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.10*(*Windows NT 6.3*)*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.10*]
+Parent="Opera 3.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.10*]
+Parent="Opera 3.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.10*]
+Parent="Opera 3.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.10*]
+Parent="Opera 3.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.10*]
+Parent="Opera 3.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.10*]
+Parent="Opera 3.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.20
+
+[Opera 3.20]
+Parent="DefaultProperties"
+Comment="Opera 3.20"
+Browser="Opera"
+Version="3.20"
+MajorVer=3
+MinorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.20*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.20*FreeBSD*)*]
+Parent="Opera 3.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Linux*)*]
+Parent="Opera 3.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_4*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.4*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_5*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.5*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_6*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.6*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_7*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.7*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_8*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.8*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_9*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.9*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10_10*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X 10.10*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Mac OS X*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*SunOS*)*]
+Parent="Opera 3.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 5.0*)*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.20*Windows 2000*)*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.20*Win 9x 4.90*)*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.20*Windows ME*)*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.20*Windows 95*)*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.20*Windows 98*)*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 4.0*)*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 5.1*)*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 5.2*)*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 6.0*)*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 6.1*)*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 6.2*)*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.20*Windows NT 6.3*)*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.20*(*FreeBSD*)*]
+Parent="Opera 3.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.20*(*Linux*)*]
+Parent="Opera 3.20"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_4*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.4*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_5*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.5*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_6*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.6*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_7*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.7*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_8*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.8*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_9*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.9*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10_10*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X 10.10*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.20*(*Mac OS X*)*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.20*(*SunOS*)*]
+Parent="Opera 3.20"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.20*(*Windows NT 5.0*)*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.20*(*Windows 2000*)*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.20*(*Win 9x 4.90*)*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.20*(*Windows ME*)*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.20*(*Windows 95*)*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.20*(*Windows 98*)*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.20*(*Windows NT 4.0*)*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.20*(*Windows NT 5.1*)*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.20*(*Windows NT 5.2*)*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.20*(*Windows NT 6.0*)*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.20*(*Windows NT 6.1*)*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.20*(*Windows NT 6.2*)*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.20*(*Windows NT 6.3*)*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.20*]
+Parent="Opera 3.20"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.20*]
+Parent="Opera 3.20"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.20*]
+Parent="Opera 3.20"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.20*]
+Parent="Opera 3.20"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.20*]
+Parent="Opera 3.20"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.20*]
+Parent="Opera 3.20"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.21
+
+[Opera 3.21]
+Parent="DefaultProperties"
+Comment="Opera 3.21"
+Browser="Opera"
+Version="3.21"
+MajorVer=3
+MinorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.21*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.21*FreeBSD*)*]
+Parent="Opera 3.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Linux*)*]
+Parent="Opera 3.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_4*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.4*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_5*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.5*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_6*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.6*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_7*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.7*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_8*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.8*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_9*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.9*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10_10*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X 10.10*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Mac OS X*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*SunOS*)*]
+Parent="Opera 3.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 5.0*)*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.21*Windows 2000*)*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.21*Win 9x 4.90*)*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.21*Windows ME*)*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.21*Windows 95*)*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.21*Windows 98*)*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 4.0*)*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 5.1*)*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 5.2*)*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 6.0*)*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 6.1*)*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 6.2*)*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.21*Windows NT 6.3*)*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.21*(*FreeBSD*)*]
+Parent="Opera 3.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.21*(*Linux*)*]
+Parent="Opera 3.21"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_4*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.4*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_5*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.5*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_6*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.6*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_7*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.7*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_8*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.8*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_9*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.9*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10_10*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X 10.10*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.21*(*Mac OS X*)*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.21*(*SunOS*)*]
+Parent="Opera 3.21"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.21*(*Windows NT 5.0*)*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.21*(*Windows 2000*)*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.21*(*Win 9x 4.90*)*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.21*(*Windows ME*)*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.21*(*Windows 95*)*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.21*(*Windows 98*)*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.21*(*Windows NT 4.0*)*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.21*(*Windows NT 5.1*)*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.21*(*Windows NT 5.2*)*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.21*(*Windows NT 6.0*)*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.21*(*Windows NT 6.1*)*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.21*(*Windows NT 6.2*)*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.21*(*Windows NT 6.3*)*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.21*]
+Parent="Opera 3.21"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.21*]
+Parent="Opera 3.21"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.21*]
+Parent="Opera 3.21"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.21*]
+Parent="Opera 3.21"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.21*]
+Parent="Opera 3.21"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.21*]
+Parent="Opera 3.21"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.50
+
+[Opera 3.50]
+Parent="DefaultProperties"
+Comment="Opera 3.50"
+Browser="Opera"
+Version="3.50"
+MajorVer=3
+MinorVer=50
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.50*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.50*FreeBSD*)*]
+Parent="Opera 3.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Linux*)*]
+Parent="Opera 3.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_4*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.4*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_5*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.5*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_6*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.6*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_7*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.7*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_8*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.8*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_9*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.9*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10_10*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X 10.10*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Mac OS X*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*SunOS*)*]
+Parent="Opera 3.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 5.0*)*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.50*Windows 2000*)*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.50*Win 9x 4.90*)*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.50*Windows ME*)*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.50*Windows 95*)*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.50*Windows 98*)*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 4.0*)*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 5.1*)*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 5.2*)*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 6.0*)*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 6.1*)*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 6.2*)*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.50*Windows NT 6.3*)*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.50*(*FreeBSD*)*]
+Parent="Opera 3.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.50*(*Linux*)*]
+Parent="Opera 3.50"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_4*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.4*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_5*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.5*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_6*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.6*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_7*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.7*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_8*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.8*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_9*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.9*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10_10*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X 10.10*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.50*(*Mac OS X*)*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.50*(*SunOS*)*]
+Parent="Opera 3.50"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.50*(*Windows NT 5.0*)*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.50*(*Windows 2000*)*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.50*(*Win 9x 4.90*)*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.50*(*Windows ME*)*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.50*(*Windows 95*)*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.50*(*Windows 98*)*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.50*(*Windows NT 4.0*)*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.50*(*Windows NT 5.1*)*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.50*(*Windows NT 5.2*)*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.50*(*Windows NT 6.0*)*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.50*(*Windows NT 6.1*)*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.50*(*Windows NT 6.2*)*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.50*(*Windows NT 6.3*)*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.50*]
+Parent="Opera 3.50"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.50*]
+Parent="Opera 3.50"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.50*]
+Parent="Opera 3.50"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.50*]
+Parent="Opera 3.50"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.50*]
+Parent="Opera 3.50"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.50*]
+Parent="Opera 3.50"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.51
+
+[Opera 3.51]
+Parent="DefaultProperties"
+Comment="Opera 3.51"
+Browser="Opera"
+Version="3.51"
+MajorVer=3
+MinorVer=51
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.51*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.51*FreeBSD*)*]
+Parent="Opera 3.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Linux*)*]
+Parent="Opera 3.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_4*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.4*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_5*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.5*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_6*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.6*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_7*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.7*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_8*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.8*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_9*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.9*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10_10*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X 10.10*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Mac OS X*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*SunOS*)*]
+Parent="Opera 3.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 5.0*)*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.51*Windows 2000*)*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.51*Win 9x 4.90*)*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.51*Windows ME*)*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.51*Windows 95*)*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.51*Windows 98*)*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 4.0*)*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 5.1*)*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 5.2*)*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 6.0*)*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 6.1*)*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 6.2*)*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.51*Windows NT 6.3*)*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.51*(*FreeBSD*)*]
+Parent="Opera 3.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.51*(*Linux*)*]
+Parent="Opera 3.51"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_4*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.4*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_5*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.5*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_6*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.6*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_7*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.7*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_8*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.8*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_9*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.9*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10_10*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X 10.10*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.51*(*Mac OS X*)*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.51*(*SunOS*)*]
+Parent="Opera 3.51"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.51*(*Windows NT 5.0*)*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.51*(*Windows 2000*)*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.51*(*Win 9x 4.90*)*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.51*(*Windows ME*)*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.51*(*Windows 95*)*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.51*(*Windows 98*)*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.51*(*Windows NT 4.0*)*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.51*(*Windows NT 5.1*)*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.51*(*Windows NT 5.2*)*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.51*(*Windows NT 6.0*)*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.51*(*Windows NT 6.1*)*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.51*(*Windows NT 6.2*)*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.51*(*Windows NT 6.3*)*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.51*]
+Parent="Opera 3.51"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.51*]
+Parent="Opera 3.51"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.51*]
+Parent="Opera 3.51"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.51*]
+Parent="Opera 3.51"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.51*]
+Parent="Opera 3.51"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.51*]
+Parent="Opera 3.51"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.60
+
+[Opera 3.60]
+Parent="DefaultProperties"
+Comment="Opera 3.60"
+Browser="Opera"
+Version="3.60"
+MajorVer=3
+MinorVer=60
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.60*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.60*FreeBSD*)*]
+Parent="Opera 3.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Linux*)*]
+Parent="Opera 3.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_4*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.4*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_5*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.5*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_6*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.6*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_7*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.7*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_8*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.8*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_9*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.9*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10_10*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X 10.10*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Mac OS X*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*SunOS*)*]
+Parent="Opera 3.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 5.0*)*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.60*Windows 2000*)*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.60*Win 9x 4.90*)*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.60*Windows ME*)*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.60*Windows 95*)*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.60*Windows 98*)*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 4.0*)*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 5.1*)*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 5.2*)*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 6.0*)*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 6.1*)*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 6.2*)*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.60*Windows NT 6.3*)*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.60*(*FreeBSD*)*]
+Parent="Opera 3.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.60*(*Linux*)*]
+Parent="Opera 3.60"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_4*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.4*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_5*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.5*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_6*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.6*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_7*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.7*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_8*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.8*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_9*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.9*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10_10*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X 10.10*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.60*(*Mac OS X*)*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.60*(*SunOS*)*]
+Parent="Opera 3.60"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.60*(*Windows NT 5.0*)*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.60*(*Windows 2000*)*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.60*(*Win 9x 4.90*)*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.60*(*Windows ME*)*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.60*(*Windows 95*)*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.60*(*Windows 98*)*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.60*(*Windows NT 4.0*)*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.60*(*Windows NT 5.1*)*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.60*(*Windows NT 5.2*)*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.60*(*Windows NT 6.0*)*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.60*(*Windows NT 6.1*)*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.60*(*Windows NT 6.2*)*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.60*(*Windows NT 6.3*)*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.60*]
+Parent="Opera 3.60"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.60*]
+Parent="Opera 3.60"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.60*]
+Parent="Opera 3.60"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.60*]
+Parent="Opera 3.60"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.60*]
+Parent="Opera 3.60"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.60*]
+Parent="Opera 3.60"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.61
+
+[Opera 3.61]
+Parent="DefaultProperties"
+Comment="Opera 3.61"
+Browser="Opera"
+Version="3.61"
+MajorVer=3
+MinorVer=61
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.61*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.61*FreeBSD*)*]
+Parent="Opera 3.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Linux*)*]
+Parent="Opera 3.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_4*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.4*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_5*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.5*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_6*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.6*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_7*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.7*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_8*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.8*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_9*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.9*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10_10*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X 10.10*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Mac OS X*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*SunOS*)*]
+Parent="Opera 3.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 5.0*)*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.61*Windows 2000*)*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.61*Win 9x 4.90*)*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.61*Windows ME*)*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.61*Windows 95*)*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.61*Windows 98*)*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 4.0*)*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 5.1*)*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 5.2*)*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 6.0*)*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 6.1*)*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 6.2*)*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.61*Windows NT 6.3*)*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.61*(*FreeBSD*)*]
+Parent="Opera 3.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.61*(*Linux*)*]
+Parent="Opera 3.61"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_4*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.4*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_5*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.5*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_6*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.6*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_7*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.7*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_8*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.8*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_9*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.9*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10_10*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X 10.10*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.61*(*Mac OS X*)*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.61*(*SunOS*)*]
+Parent="Opera 3.61"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.61*(*Windows NT 5.0*)*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.61*(*Windows 2000*)*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.61*(*Win 9x 4.90*)*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.61*(*Windows ME*)*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.61*(*Windows 95*)*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.61*(*Windows 98*)*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.61*(*Windows NT 4.0*)*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.61*(*Windows NT 5.1*)*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.61*(*Windows NT 5.2*)*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.61*(*Windows NT 6.0*)*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.61*(*Windows NT 6.1*)*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.61*(*Windows NT 6.2*)*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.61*(*Windows NT 6.3*)*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.61*]
+Parent="Opera 3.61"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.61*]
+Parent="Opera 3.61"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.61*]
+Parent="Opera 3.61"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.61*]
+Parent="Opera 3.61"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.61*]
+Parent="Opera 3.61"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.61*]
+Parent="Opera 3.61"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 3.62
+
+[Opera 3.62]
+Parent="DefaultProperties"
+Comment="Opera 3.62"
+Browser="Opera"
+Version="3.62"
+MajorVer=3
+MinorVer=62
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?3.62*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?3.62*FreeBSD*)*]
+Parent="Opera 3.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Linux*)*]
+Parent="Opera 3.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_4*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.4*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_5*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.5*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_6*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.6*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_7*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.7*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_8*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.8*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_9*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.9*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10_10*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X 10.10*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Mac OS X*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*SunOS*)*]
+Parent="Opera 3.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 5.0*)*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.62*Windows 2000*)*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?3.62*Win 9x 4.90*)*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.62*Windows ME*)*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?3.62*Windows 95*)*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?3.62*Windows 98*)*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 4.0*)*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 5.1*)*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 5.2*)*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 6.0*)*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 6.1*)*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 6.2*)*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?3.62*Windows NT 6.3*)*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/3.62*(*FreeBSD*)*]
+Parent="Opera 3.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/3.62*(*Linux*)*]
+Parent="Opera 3.62"
+Platform="Linux"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_4*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.4*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_5*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.5*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_6*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.6*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_7*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.7*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_8*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.8*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_9*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.9*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10_10*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X 10.10*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/3.62*(*Mac OS X*)*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/3.62*(*SunOS*)*]
+Parent="Opera 3.62"
+Platform="SunOS"
+Win32="false"
+
+[Opera/3.62*(*Windows NT 5.0*)*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.62*(*Windows 2000*)*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/3.62*(*Win 9x 4.90*)*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.62*(*Windows ME*)*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/3.62*(*Windows 95*)*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/3.62*(*Windows 98*)*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/3.62*(*Windows NT 4.0*)*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/3.62*(*Windows NT 5.1*)*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/3.62*(*Windows NT 5.2*)*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/3.62*(*Windows NT 6.0*)*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/3.62*(*Windows NT 6.1*)*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/3.62*(*Windows NT 6.2*)*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/3.62*(*Windows NT 6.3*)*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(compatible; Opera/3.0; *FreeBSD*) 3.62*]
+Parent="Opera 3.62"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Linux*) 3.62*]
+Parent="Opera 3.62"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_4*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.4*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_5*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.5*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_6*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.6*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_7*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.7*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_8*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.8*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_9*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.9*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10_10*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X 10.10*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Mac OS X*) 3.62*]
+Parent="Opera 3.62"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *SunOS*) 3.62*]
+Parent="Opera 3.62"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.0*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 2000*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Win 9x 4.90*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows ME*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 95*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 98*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.0*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 4.1*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows 4.10*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.1*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 5.2*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.0*) 3.62*]
+Parent="Opera 3.62"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.1*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.2*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(compatible; Opera/3.0; *Windows NT 6.3*) 3.62*]
+Parent="Opera 3.62"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.00
+
+[Opera 2.00]
+Parent="DefaultProperties"
+Comment="Opera 2.00"
+Browser="Opera"
+Version="2.00"
+MajorVer=2
+MinorVer=00
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?2.00*]
+Parent="Opera 2.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?2.00*FreeBSD*)*]
+Parent="Opera 2.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Linux*)*]
+Parent="Opera 2.00"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_4*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.4*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_5*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.5*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_6*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.6*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_7*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.7*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_8*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.8*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_9*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.9*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10_10*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X 10.10*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Mac OS X*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*SunOS*)*]
+Parent="Opera 2.00"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 5.0*)*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.00*Windows 2000*)*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.00*Win 9x 4.90*)*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.00*Windows ME*)*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.00*Windows 95*)*]
+Parent="Opera 2.00"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?2.00*Windows 98*)*]
+Parent="Opera 2.00"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 4.0*)*]
+Parent="Opera 2.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 5.1*)*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 5.2*)*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 6.0*)*]
+Parent="Opera 2.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 6.1*)*]
+Parent="Opera 2.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 6.2*)*]
+Parent="Opera 2.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?2.00*Windows NT 6.3*)*]
+Parent="Opera 2.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/2.00*(*FreeBSD*)*]
+Parent="Opera 2.00"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/2.00*(*Linux*)*]
+Parent="Opera 2.00"
+Platform="Linux"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_4*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.4*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_5*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.5*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_6*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.6*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_7*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.7*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_8*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.8*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_9*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.9*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10_10*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X 10.10*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.00*(*Mac OS X*)*]
+Parent="Opera 2.00"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/2.00*(*SunOS*)*]
+Parent="Opera 2.00"
+Platform="SunOS"
+Win32="false"
+
+[Opera/2.00*(*Windows NT 5.0*)*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.00*(*Windows 2000*)*]
+Parent="Opera 2.00"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.00*(*Win 9x 4.90*)*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.00*(*Windows ME*)*]
+Parent="Opera 2.00"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.00*(*Windows 95*)*]
+Parent="Opera 2.00"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/2.00*(*Windows 98*)*]
+Parent="Opera 2.00"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/2.00*(*Windows NT 4.0*)*]
+Parent="Opera 2.00"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/2.00*(*Windows NT 5.1*)*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/2.00*(*Windows NT 5.2*)*]
+Parent="Opera 2.00"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/2.00*(*Windows NT 6.0*)*]
+Parent="Opera 2.00"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/2.00*(*Windows NT 6.1*)*]
+Parent="Opera 2.00"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/2.00*(*Windows NT 6.2*)*]
+Parent="Opera 2.00"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/2.00*(*Windows NT 6.3*)*]
+Parent="Opera 2.00"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.10
+
+[Opera 2.10]
+Parent="DefaultProperties"
+Comment="Opera 2.10"
+Browser="Opera"
+Version="2.10"
+MajorVer=2
+MinorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?2.10*]
+Parent="Opera 2.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?2.10*FreeBSD*)*]
+Parent="Opera 2.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Linux*)*]
+Parent="Opera 2.10"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_4*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.4*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_5*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.5*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_6*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.6*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_7*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.7*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_8*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.8*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_9*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.9*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10_10*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X 10.10*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Mac OS X*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*SunOS*)*]
+Parent="Opera 2.10"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 5.0*)*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.10*Windows 2000*)*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.10*Win 9x 4.90*)*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.10*Windows ME*)*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.10*Windows 95*)*]
+Parent="Opera 2.10"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?2.10*Windows 98*)*]
+Parent="Opera 2.10"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 4.0*)*]
+Parent="Opera 2.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 5.1*)*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 5.2*)*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 6.0*)*]
+Parent="Opera 2.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 6.1*)*]
+Parent="Opera 2.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 6.2*)*]
+Parent="Opera 2.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?2.10*Windows NT 6.3*)*]
+Parent="Opera 2.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/2.10*(*FreeBSD*)*]
+Parent="Opera 2.10"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/2.10*(*Linux*)*]
+Parent="Opera 2.10"
+Platform="Linux"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_4*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.4*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_5*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.5*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_6*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.6*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_7*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.7*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_8*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.8*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_9*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.9*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10_10*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X 10.10*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.10*(*Mac OS X*)*]
+Parent="Opera 2.10"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/2.10*(*SunOS*)*]
+Parent="Opera 2.10"
+Platform="SunOS"
+Win32="false"
+
+[Opera/2.10*(*Windows NT 5.0*)*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.10*(*Windows 2000*)*]
+Parent="Opera 2.10"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.10*(*Win 9x 4.90*)*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.10*(*Windows ME*)*]
+Parent="Opera 2.10"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.10*(*Windows 95*)*]
+Parent="Opera 2.10"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/2.10*(*Windows 98*)*]
+Parent="Opera 2.10"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/2.10*(*Windows NT 4.0*)*]
+Parent="Opera 2.10"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/2.10*(*Windows NT 5.1*)*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/2.10*(*Windows NT 5.2*)*]
+Parent="Opera 2.10"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/2.10*(*Windows NT 6.0*)*]
+Parent="Opera 2.10"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/2.10*(*Windows NT 6.1*)*]
+Parent="Opera 2.10"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/2.10*(*Windows NT 6.2*)*]
+Parent="Opera 2.10"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/2.10*(*Windows NT 6.3*)*]
+Parent="Opera 2.10"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.11
+
+[Opera 2.11]
+Parent="DefaultProperties"
+Comment="Opera 2.11"
+Browser="Opera"
+Version="2.11"
+MajorVer=2
+MinorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?2.11*]
+Parent="Opera 2.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?2.11*FreeBSD*)*]
+Parent="Opera 2.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Linux*)*]
+Parent="Opera 2.11"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_4*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.4*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_5*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.5*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_6*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.6*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_7*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.7*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_8*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.8*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_9*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.9*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10_10*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X 10.10*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Mac OS X*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*SunOS*)*]
+Parent="Opera 2.11"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 5.0*)*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.11*Windows 2000*)*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.11*Win 9x 4.90*)*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.11*Windows ME*)*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.11*Windows 95*)*]
+Parent="Opera 2.11"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?2.11*Windows 98*)*]
+Parent="Opera 2.11"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 4.0*)*]
+Parent="Opera 2.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 5.1*)*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 5.2*)*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 6.0*)*]
+Parent="Opera 2.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 6.1*)*]
+Parent="Opera 2.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 6.2*)*]
+Parent="Opera 2.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?2.11*Windows NT 6.3*)*]
+Parent="Opera 2.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/2.11*(*FreeBSD*)*]
+Parent="Opera 2.11"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/2.11*(*Linux*)*]
+Parent="Opera 2.11"
+Platform="Linux"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_4*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.4*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_5*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.5*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_6*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.6*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_7*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.7*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_8*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.8*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_9*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.9*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10_10*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X 10.10*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.11*(*Mac OS X*)*]
+Parent="Opera 2.11"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/2.11*(*SunOS*)*]
+Parent="Opera 2.11"
+Platform="SunOS"
+Win32="false"
+
+[Opera/2.11*(*Windows NT 5.0*)*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.11*(*Windows 2000*)*]
+Parent="Opera 2.11"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.11*(*Win 9x 4.90*)*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.11*(*Windows ME*)*]
+Parent="Opera 2.11"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.11*(*Windows 95*)*]
+Parent="Opera 2.11"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/2.11*(*Windows 98*)*]
+Parent="Opera 2.11"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/2.11*(*Windows NT 4.0*)*]
+Parent="Opera 2.11"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/2.11*(*Windows NT 5.1*)*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/2.11*(*Windows NT 5.2*)*]
+Parent="Opera 2.11"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/2.11*(*Windows NT 6.0*)*]
+Parent="Opera 2.11"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/2.11*(*Windows NT 6.1*)*]
+Parent="Opera 2.11"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/2.11*(*Windows NT 6.2*)*]
+Parent="Opera 2.11"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/2.11*(*Windows NT 6.3*)*]
+Parent="Opera 2.11"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera 2.12
+
+[Opera 2.12]
+Parent="DefaultProperties"
+Comment="Opera 2.12"
+Browser="Opera"
+Version="2.12"
+MajorVer=2
+MinorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows 2000*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/4.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows ME*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/4.0 (compatible; MSIE*Windows 95*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/4.0 (compatible; MSIE*Windows 98*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/4.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows 2000*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (compatible; MSIE*Win 9x 4.90*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows ME*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/5.0 (compatible; MSIE*Windows 95*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (compatible; MSIE*Windows 98*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 4.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 5.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (compatible; MSIE*Windows NT 6.3*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows ME*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?2.12*]
+Parent="Opera 2.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?2.12*FreeBSD*)*]
+Parent="Opera 2.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Linux*)*]
+Parent="Opera 2.12"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_4*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.4*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_5*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.5*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_6*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.6*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_7*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.7*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_8*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.8*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_9*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.9*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10_10*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X 10.10*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Mac OS X*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*SunOS*)*]
+Parent="Opera 2.12"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 5.0*)*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.12*Windows 2000*)*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?2.12*Win 9x 4.90*)*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.12*Windows ME*)*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?2.12*Windows 95*)*]
+Parent="Opera 2.12"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?2.12*Windows 98*)*]
+Parent="Opera 2.12"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 4.0*)*]
+Parent="Opera 2.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 5.1*)*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 5.2*)*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 6.0*)*]
+Parent="Opera 2.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 6.1*)*]
+Parent="Opera 2.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 6.2*)*]
+Parent="Opera 2.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?2.12*Windows NT 6.3*)*]
+Parent="Opera 2.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/2.12*(*FreeBSD*)*]
+Parent="Opera 2.12"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/2.12*(*Linux*)*]
+Parent="Opera 2.12"
+Platform="Linux"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_4*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.4*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_5*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.5*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_6*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.6*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_7*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.7*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_8*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.8*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_9*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.9*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10_10*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X 10.10*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/2.12*(*Mac OS X*)*]
+Parent="Opera 2.12"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/2.12*(*SunOS*)*]
+Parent="Opera 2.12"
+Platform="SunOS"
+Win32="false"
+
+[Opera/2.12*(*Windows NT 5.0*)*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.12*(*Windows 2000*)*]
+Parent="Opera 2.12"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/2.12*(*Win 9x 4.90*)*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.12*(*Windows ME*)*]
+Parent="Opera 2.12"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/2.12*(*Windows 95*)*]
+Parent="Opera 2.12"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/2.12*(*Windows 98*)*]
+Parent="Opera 2.12"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/2.12*(*Windows NT 4.0*)*]
+Parent="Opera 2.12"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/2.12*(*Windows NT 5.1*)*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/2.12*(*Windows NT 5.2*)*]
+Parent="Opera 2.12"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/2.12*(*Windows NT 6.0*)*]
+Parent="Opera 2.12"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/2.12*(*Windows NT 6.1*)*]
+Parent="Opera 2.12"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/2.12*(*Windows NT 6.2*)*]
+Parent="Opera 2.12"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/2.12*(*Windows NT 6.3*)*]
+Parent="Opera 2.12"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Opera Generic
+
+[Opera Generic]
+Parent="DefaultProperties"
+Comment="Opera Generic"
+Browser="Opera"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+CssVersion=1
+
+[Mozilla/?.*(*Opera?*FreeBSD*)*]
+Parent="Opera Generic"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Linux*)*]
+Parent="Opera Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_4*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.4*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_5*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.5*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_6*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.6*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_7*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.7*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_8*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.8*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_9*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.9*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10_10*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X 10.10*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Mac OS X*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*Opera?*SunOS*)*]
+Parent="Opera Generic"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Opera?*Windows 2000*)*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?*Win 9x 4.90*)*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?*Windows 95*)*]
+Parent="Opera Generic"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Opera?*Windows 98*)*]
+Parent="Opera Generic"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Opera?*Windows ME*)*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Opera?*Windows NT 4.0*)*]
+Parent="Opera Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Opera?*Windows NT 5.0*)*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Opera?*Windows NT 5.1*)*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Opera?*Windows NT 5.2*)*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Opera?*Windows NT 6.0*)*]
+Parent="Opera Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Opera?*Windows NT 6.1*)*]
+Parent="Opera Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Opera?*Windows NT 6.2*)*]
+Parent="Opera Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Opera?*Windows NT 6.3*)*]
+Parent="Opera Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*Opera?*UNIX*)*]
+Parent="Opera Generic"
+Platform="Unix"
+Win32="false"
+
+[Mozilla/?.*(*FreeBSD*)*Opera?*]
+Parent="Opera Generic"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/?.*(*Linux*)*Opera?*]
+Parent="Opera Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_4*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.4*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_5*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.5*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_6*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.6*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_7*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.7*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_8*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.8*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_9*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.9*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10_10*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X 10.10*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/?.*(*Mac OS X*)*Opera?*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/?.*(*SunOS*)*Opera?*]
+Parent="Opera Generic"
+Platform="SunOS"
+Win32="false"
+
+[Mozilla/?.*(*Windows 2000*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Win 9x 4.90*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows 95*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/?.*(*Windows 98*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/?.*(*Windows ME*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Mozilla/?.*(*Windows NT 4.0*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/?.*(*Windows NT 5.0*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/?.*(*Windows NT 5.1*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/?.*(*Windows NT 5.2*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/?.*(*Windows NT 6.0*)*Opera?*]
+Parent="Opera Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/?.*(*Windows NT 6.1*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/?.*(*Windows NT 6.2*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/?.*(*Windows NT 6.3*)*Opera?*]
+Parent="Opera Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/?.*(*UNIX*)*Opera?*]
+Parent="Opera Generic"
+Platform="Unix"
+Win32="false"
+
+[Opera?*(*FreeBSD*)*]
+Parent="Opera Generic"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera?*(*Linux*)*]
+Parent="Opera Generic"
+Platform="Linux"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_4*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.4*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_5*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.5*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_6*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.6*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_7*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.7*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_8*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.8*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_9*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.9*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera?*(*Mac OS X 10_10*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera?*(*Mac OS X 10.10*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera?*(*Mac OS X*)*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera?*(*SunOS*)*]
+Parent="Opera Generic"
+Platform="SunOS"
+Win32="false"
+
+[Opera?*(*Windows 2000*)*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera?*(*Win 9x 4.90*)*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera?*(*Windows 95*)*]
+Parent="Opera Generic"
+Platform="Win95"
+Platform_Version=95
+
+[Opera?*(*Windows 98*)*]
+Parent="Opera Generic"
+Platform="Win98"
+Platform_Version=98
+
+[Opera?*(*Windows ME*)*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera?*(*Windows NT 4.0*)*]
+Parent="Opera Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera?*(*Windows NT 5.0*)*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera?*(*Windows NT 5.1*)*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera?*(*Windows NT 5.2*)*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera?*(*Windows NT 6.0*)*]
+Parent="Opera Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera?*(*Windows NT 6.1*)*]
+Parent="Opera Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera?*(*Windows NT 6.2*)*]
+Parent="Opera Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera?*(*Windows NT 6.3*)*]
+Parent="Opera Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera?*(*UNIX*)*]
+Parent="Opera Generic"
+Platform="Unix"
+Win32="false"
+
+[Opera/9.80*(*FreeBSD*)*Version/*]
+Parent="Opera Generic"
+Platform="FreeBSD"
+Win32="false"
+
+[Opera/9.80*(*Linux*)*Version/*]
+Parent="Opera Generic"
+Platform="Linux"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_4*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.4*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_5*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.5*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_6*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.6*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_7*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.7*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_8*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.8*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_9*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.9*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10_10*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X 10.10*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Opera/9.80*(*Mac OS X*)*Version/*]
+Parent="Opera Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Opera/9.80*(*SunOS*)*Version/*]
+Parent="Opera Generic"
+Platform="SunOS"
+Win32="false"
+
+[Opera/9.80*(*Windows 2000*)*Version/*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Win 9x 4.90*)*Version/*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows 95*)*Version/*]
+Parent="Opera Generic"
+Platform="Win95"
+Platform_Version=95
+
+[Opera/9.80*(*Windows 98*)*Version/*]
+Parent="Opera Generic"
+Platform="Win98"
+Platform_Version=98
+
+[Opera/9.80*(*Windows ME*)*Version/*]
+Parent="Opera Generic"
+Platform="WinME"
+Platform_Version=ME
+
+[Opera/9.80*(*Windows NT 4.0*)*Version/*]
+Parent="Opera Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Opera/9.80*(*Windows NT 5.0*)*Version/*]
+Parent="Opera Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Opera/9.80*(*Windows NT 5.1*)*Version/*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Opera/9.80*(*Windows NT 5.2*)*Version/*]
+Parent="Opera Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Opera/9.80*(*Windows NT 6.0*)*Version/*]
+Parent="Opera Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Opera/9.80*(*Windows NT 6.1*)*Version/*]
+Parent="Opera Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Opera/9.80*(*Windows NT 6.2*)*Version/*]
+Parent="Opera Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Opera/9.80*(*Windows NT 6.3*)*Version/*]
+Parent="Opera Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Opera/9.80*(*UNIX*)*Version/*]
+Parent="Opera Generic"
+Platform="Unix"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google
+
+[Google]
+Parent="DefaultProperties"
+Comment="Google"
+Browser="Google"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[GoogleFriendConnect*]
+Parent="Google"
+Browser="Google Friend Connect"
+
+[Kml-Google; (+http://code.google.com/apis/kml)*]
+Parent="Google"
+
+[Mozilla/4.0 (compatible; GoogleToolbar*)]
+Parent="Google"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko; *) Version/3.1 Safari/*]
+Parent="Google"
+
+[google (*Enterprise*)]
+Parent="Google"
+Browser="Google Enterprise"
+
+[Google OpenSocial agent*]
+Parent="Google"
+Browser="Google OpenSocial"
+
+[*Google Wireless Transcoder*]
+Parent="Google"
+Browser="Google Wireless Transcoder"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko; Google Wireless Transcoder) Chrome/* Safari/*]
+Parent="Google"
+Browser="Google Wireless Transcoder"
+
+[Google-Site-Verification*]
+Parent="Google"
+Browser="Google-Site-Verification"
+
+[Mozilla/5.0 (compatible; Google-Site-Verification/1.0*]
+Parent="Google"
+Browser="Google-Site-Verification"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Google-Site-Verification/*]
+Parent="Google"
+Browser="Google-Site-Verification"
+
+[Google-Sitemaps*]
+Parent="Google"
+Browser="Google-Sitemaps"
+
+[Feedfetcher-Google*]
+Parent="Google"
+Browser="Feedfetcher-Google"
+isSyndicationReader="true"
+
+[Feedfetcher-Google-iGoogleGadgets*]
+Parent="Google"
+Browser="iGoogleGadgets"
+isSyndicationReader="true"
+
+[Mozilla/5.0 (*) AppleWebKit/*(KHTML, like Gecko; Google-Adwords-DisplayAds-WebRender;)*]
+Parent="Google"
+Browser="Google Adwords DisplayAds WebRender"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nichrome 33.0
+
+[Nichrome Browser 33.0]
+Parent="DefaultProperties"
+Comment="Nichrome 33.0"
+Browser="Nichrome"
+Version="33.0"
+MajorVer=33
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.* Safari/* Nichrome/self/33*]
+Parent="Nichrome Browser 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App 3.1
+
+[Google App 3.1]
+Parent="DefaultProperties"
+Comment="Google App 3.1"
+Browser="Google App"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+[Mozilla/5.0 (iPod*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+[Mozilla/5.0 (*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.1.* Mobile/* Safari/*]
+Parent="Google App 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App 3.2
+
+[Google App 3.2]
+Parent="DefaultProperties"
+Comment="Google App 3.2"
+Browser="Google App"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+[Mozilla/5.0 (*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/3.2.* Mobile/* Safari/*]
+Parent="Google App 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App 4.0
+
+[Google App 4.0]
+Parent="DefaultProperties"
+Comment="Google App 4.0"
+Browser="Google App"
+Version="4.0"
+MajorVer=4
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+[Mozilla/5.0 (iPod*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+[Mozilla/5.0 (*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.0.* Mobile/* Safari/*]
+Parent="Google App 4.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App 4.1
+
+[Google App 4.1]
+Parent="DefaultProperties"
+Comment="Google App 4.1"
+Browser="Google App"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+[Mozilla/5.0 (iPod*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+[Mozilla/5.0 (*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.1.* Mobile/* Safari/*]
+Parent="Google App 4.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App 4.2
+
+[Google App 4.2]
+Parent="DefaultProperties"
+Comment="Google App 4.2"
+Browser="Google App"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+[Mozilla/5.0 (*CPU OS 4_2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+Platform_Version="8.1"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/4.2.* Mobile/* Safari/*]
+Parent="Google App 4.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AdSense Bot
+
+[AdSense Bot]
+Parent="DefaultProperties"
+Comment="Google"
+Browser="AdSense Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mediapartners-Google*]
+Parent="AdSense Bot"
+
+[Adsense-Snapshot-Google*]
+Parent="AdSense Bot"
+Browser="AdSense Snapshot Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App
+
+[Google App]
+Parent="DefaultProperties"
+Comment="Google App"
+Browser="Google App"
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+isTablet="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) GSA/* Mobile/* Safari/*]
+Parent="Google App"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Page Speed
+
+[Google Page Speed]
+Parent="DefaultProperties"
+Comment="Google Page Speed"
+Browser="Google Page Speed"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Chrome/* Safari/*]
+Parent="Google Page Speed"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko; Google Page Speed Insights) Version/*Safari/*]
+Parent="Google Page Speed"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Search Appliance
+
+[Google Search Appliance]
+Parent="DefaultProperties"
+Comment="Google Search Appliance"
+Browser="Google Search Appliance"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[gsa-crawler*]
+Parent="Google Search Appliance"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Web Snippet
+
+[Google Web Snippet]
+Parent="DefaultProperties"
+Comment="Google Web Snippet"
+Browser="Google Web Snippet"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*CrOS*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) Gecko/* Firefox/* Google (+https://developers.google.com/+/web/snippet/)*]
+Parent="Google Web Snippet"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Image Proxy
+
+[Google Image Proxy]
+Parent="DefaultProperties"
+Comment="Google Image Proxy"
+Browser="Google Image Proxy"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*CrOS*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) Gecko* Firefox/* (via ggpht.com*]
+Parent="Google Image Proxy"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Structured-Data TestingTool
+
+[Google Structured-Data TestingTool]
+Parent="DefaultProperties"
+Comment="Google Structured-Data TestingTool"
+Browser="Google Structured-Data TestingTool"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux*x86_64*Google-StructuredDataTestingTool; +http://www.google.com/webmasters/tools/richsnippets)]
+Parent="Google Structured-Data TestingTool"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*Google-StructuredDataTestingTool; +http://www.google.com/webmasters/tools/richsnippets)]
+Parent="Google Structured-Data TestingTool"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*Google-StructuredDataTestingTool; +http://www.google.com/webmasters/tools/richsnippets)]
+Parent="Google Structured-Data TestingTool"
+Platform="Linux"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AdsBot Google-Mobile
+
+[AdsBot Google-Mobile]
+Parent="DefaultProperties"
+Comment="AdsBot Google-Mobile"
+Browser="AdsBot Google-Mobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile (?http://www.google.com/mobile/adsbot.html) Mozilla (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit (KHTML,*like Gecko*)*]
+Parent="AdsBot Google-Mobile"
+Platform="iOS"
+isMobileDevice="true"
+
+[AdsBot?Google?Mobile*]
+Parent="AdsBot Google-Mobile"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; AdsBot Google
+
+[AdsBot Google]
+Parent="DefaultProperties"
+Comment="AdsBot Google"
+Browser="AdsBot Google"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[AdsBot?Google*]
+Parent="AdsBot Google"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google App Engine
+
+[Google App Engine]
+Parent="DefaultProperties"
+Comment="Google App Engine"
+Browser="Google App Engine"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[AppEngine-Google*]
+Parent="Google App Engine"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; *) AppEngine-Google; (+http://code.google.com/appengine; appid: *]
+Parent="Google App Engine"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; HubSpot Webcrawler
+
+[HubSpot Webcrawler]
+Parent="DefaultProperties"
+Comment="HubSpot Webcrawler"
+Browser="HubSpot Webcrawler"
+Crawler="true"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="FreeBSD"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win95"
+Platform_Version=95
+Win32="true"
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win98"
+Platform_Version=98
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinNT"
+Platform_Version="4.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/*Safari/* HubSpot Webcrawler]
+Parent="HubSpot Webcrawler"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Feedfetcher
+
+[Google Feedfetcher]
+Parent="DefaultProperties"
+Comment="Google Feedfetcher"
+Browser="Google Feedfetcher"
+Frames="true"
+IFrames="true"
+Tables="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Feedfetcher-Google*)]
+Parent="Google Feedfetcher"
+
+[Mozilla/5.0 (compatible) Feedfetcher-Google; ( http://www.google.com/feedfetcher.html)]
+Parent="Google Feedfetcher"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.0
+
+[UC Browser 9.0]
+Parent="DefaultProperties"
+Comment="UC Browser 9.0"
+Browser="UC Browser"
+Version="9.0"
+MajorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0* U3/* *Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.0*Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.0* U2/*]
+Parent="UC Browser 9.0"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.0*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.0* Mobile Safari/*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.0* Mobile*]
+Parent="UC Browser 9.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.0* U2/* Mobile*]
+Parent="UC Browser 9.0"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.0* U2/* Mobile]
+Parent="UC Browser 9.0"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.0 for Desktop]
+Parent="UC Browser 9.0"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.0*]
+Parent="UC Browser 9.0 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.1
+
+[UC Browser 9.1]
+Parent="DefaultProperties"
+Comment="UC Browser 9.1"
+Browser="UC Browser"
+Version="9.1"
+MajorVer=9
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1* U3/* *Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.1*Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.1* U2/*]
+Parent="UC Browser 9.1"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.1*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.1* Mobile Safari/*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.1* Mobile*]
+Parent="UC Browser 9.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.1* U2/* Mobile*]
+Parent="UC Browser 9.1"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.1* U2/* Mobile]
+Parent="UC Browser 9.1"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.1 for Desktop]
+Parent="UC Browser 9.1"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.1*]
+Parent="UC Browser 9.1 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.2
+
+[UC Browser 9.2]
+Parent="DefaultProperties"
+Comment="UC Browser 9.2"
+Browser="UC Browser"
+Version="9.2"
+MajorVer=9
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2* U3/* *Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.2*Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.2* U2/*]
+Parent="UC Browser 9.2"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.2*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.2* Mobile Safari/*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.2* Mobile*]
+Parent="UC Browser 9.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.2* U2/* Mobile*]
+Parent="UC Browser 9.2"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.2* U2/* Mobile]
+Parent="UC Browser 9.2"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.2 for Desktop]
+Parent="UC Browser 9.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.2*]
+Parent="UC Browser 9.2 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.3
+
+[UC Browser 9.3]
+Parent="DefaultProperties"
+Comment="UC Browser 9.3"
+Browser="UC Browser"
+Version="9.3"
+MajorVer=9
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3* U3/* *Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.3*Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.3* U2/*]
+Parent="UC Browser 9.3"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.3*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.3* Mobile Safari/*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.3* Mobile*]
+Parent="UC Browser 9.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.3* U2/* Mobile*]
+Parent="UC Browser 9.3"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.3* U2/* Mobile]
+Parent="UC Browser 9.3"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.3 for Desktop]
+Parent="UC Browser 9.3"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.3*]
+Parent="UC Browser 9.3 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.4
+
+[UC Browser 9.4]
+Parent="DefaultProperties"
+Comment="UC Browser 9.4"
+Browser="UC Browser"
+Version="9.4"
+MajorVer=9
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4* U3/* *Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.4*Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.4* U2/*]
+Parent="UC Browser 9.4"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.4*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.4* Mobile Safari/*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.4* Mobile*]
+Parent="UC Browser 9.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.4* U2/* Mobile*]
+Parent="UC Browser 9.4"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.4* U2/* Mobile]
+Parent="UC Browser 9.4"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.4 for Desktop]
+Parent="UC Browser 9.4"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.4*]
+Parent="UC Browser 9.4 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.5
+
+[UC Browser 9.5]
+Parent="DefaultProperties"
+Comment="UC Browser 9.5"
+Browser="UC Browser"
+Version="9.5"
+MajorVer=9
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5* U3/* *Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.5*Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.5* U2/*]
+Parent="UC Browser 9.5"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.5*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.5* Mobile Safari/*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.5* Mobile*]
+Parent="UC Browser 9.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.5* U2/* Mobile*]
+Parent="UC Browser 9.5"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.5* U2/* Mobile]
+Parent="UC Browser 9.5"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.5 for Desktop]
+Parent="UC Browser 9.5"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.5*]
+Parent="UC Browser 9.5 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.6
+
+[UC Browser 9.6]
+Parent="DefaultProperties"
+Comment="UC Browser 9.6"
+Browser="UC Browser"
+Version="9.6"
+MajorVer=9
+MinorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6* U3/* *Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.6*Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.6* U2/*]
+Parent="UC Browser 9.6"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.6*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.6* Mobile Safari/*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.6* Mobile*]
+Parent="UC Browser 9.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.6* U2/* Mobile*]
+Parent="UC Browser 9.6"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.6* U2/* Mobile]
+Parent="UC Browser 9.6"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.6 for Desktop]
+Parent="UC Browser 9.6"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.6*]
+Parent="UC Browser 9.6 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.7
+
+[UC Browser 9.7]
+Parent="DefaultProperties"
+Comment="UC Browser 9.7"
+Browser="UC Browser"
+Version="9.7"
+MajorVer=9
+MinorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7* U3/* *Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.7*Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.7* U2/*]
+Parent="UC Browser 9.7"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.7*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.7* Mobile Safari/*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.7* Mobile*]
+Parent="UC Browser 9.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.7* U2/* Mobile*]
+Parent="UC Browser 9.7"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.7* U2/* Mobile]
+Parent="UC Browser 9.7"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.7 for Desktop]
+Parent="UC Browser 9.7"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.7*]
+Parent="UC Browser 9.7 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 9.8
+
+[UC Browser 9.8]
+Parent="DefaultProperties"
+Comment="UC Browser 9.8"
+Browser="UC Browser"
+Version="9.8"
+MajorVer=9
+MinorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.4*) UCWEB9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9300 *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MI 3W *) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8* U3/* *Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) *UCBrowser/9.8*Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*iPh*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5360) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7562) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*Micromax A27) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/9.8* U2/*]
+Parent="UC Browser 9.8"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/9.8*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LA-M1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/9.8* Mobile Safari/*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/2.0 (Linux; U; Opera Mini/*; Videocon_A15) U2/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; GT-S5670 Build/*) U2/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0(Linux; U; Opera Mini/*; MB525 Build/*) U2/* UCBrowser/9.8* Mobile*]
+Parent="UC Browser 9.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/2.0 (Java; *SAMSUNG-SGH-T669) U2/* UCBrowser/9.8* U2/* Mobile*]
+Parent="UC Browser 9.8"
+Platform="JAVA"
+Win32="false"
+
+[Nokia5130c-2/* Profile/MIDP-2* UCWEB/2.0 (*) U2/* UCBrowser/9.8* U2/* Mobile]
+Parent="UC Browser 9.8"
+Platform="JAVA"
+Win32="false"
+
+[UC Browser 9.8 for Desktop]
+Parent="UC Browser 9.8"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*; Desktop) AppleWebKit/* (KHTML, like Gecko) UCBrowser/9.8*]
+Parent="UC Browser 9.8 for Desktop"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.0
+
+[UC Browser 8.0]
+Parent="DefaultProperties"
+Comment="UC Browser 8.0"
+Browser="UC Browser"
+Version="8.0"
+MajorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.0*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.0* U2/*]
+Parent="UC Browser 8.0"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.0*]
+Parent="UC Browser 8.0"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.0*]
+Parent="UC Browser 8.0"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.0*]
+Parent="UC Browser 8.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0* Mobile Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0* Mobile Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0* Mobile Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.0*Safari/*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.0* Mobile*]
+Parent="UC Browser 8.0"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.0* UNTRUSTED/1.0]
+Parent="UC Browser 8.0"
+
+[samsung-gt-s3370/UC Browser8.0* UNTRUSTED/1.0]
+Parent="UC Browser 8.0"
+
+[*/UC Browser8.0* UNTRUSTED/1.0]
+Parent="UC Browser 8.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.1
+
+[UC Browser 8.1]
+Parent="DefaultProperties"
+Comment="UC Browser 8.1"
+Browser="UC Browser"
+Version="8.1"
+MajorVer=8
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.1*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.1* U2/*]
+Parent="UC Browser 8.1"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.1*]
+Parent="UC Browser 8.1"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.1*]
+Parent="UC Browser 8.1"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.1*]
+Parent="UC Browser 8.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1* Mobile Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1* Mobile Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1* Mobile Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.1*Safari/*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.1* Mobile*]
+Parent="UC Browser 8.1"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.1* UNTRUSTED/1.0]
+Parent="UC Browser 8.1"
+
+[samsung-gt-s3370/UC Browser8.1* UNTRUSTED/1.0]
+Parent="UC Browser 8.1"
+
+[*/UC Browser8.1* UNTRUSTED/1.0]
+Parent="UC Browser 8.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.2
+
+[UC Browser 8.2]
+Parent="DefaultProperties"
+Comment="UC Browser 8.2"
+Browser="UC Browser"
+Version="8.2"
+MajorVer=8
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.2*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.2* U2/*]
+Parent="UC Browser 8.2"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.2*]
+Parent="UC Browser 8.2"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.2*]
+Parent="UC Browser 8.2"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.2*]
+Parent="UC Browser 8.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2* Mobile Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2* Mobile Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2* Mobile Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.2*Safari/*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.2* Mobile*]
+Parent="UC Browser 8.2"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.2* UNTRUSTED/1.0]
+Parent="UC Browser 8.2"
+
+[samsung-gt-s3370/UC Browser8.2* UNTRUSTED/1.0]
+Parent="UC Browser 8.2"
+
+[*/UC Browser8.2* UNTRUSTED/1.0]
+Parent="UC Browser 8.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.3
+
+[UC Browser 8.3]
+Parent="DefaultProperties"
+Comment="UC Browser 8.3"
+Browser="UC Browser"
+Version="8.3"
+MajorVer=8
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.3*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.3* U2/*]
+Parent="UC Browser 8.3"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.3*]
+Parent="UC Browser 8.3"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.3*]
+Parent="UC Browser 8.3"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.3*]
+Parent="UC Browser 8.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3* Mobile Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3* Mobile Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3* Mobile Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.3*Safari/*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.3* Mobile*]
+Parent="UC Browser 8.3"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.3* UNTRUSTED/1.0]
+Parent="UC Browser 8.3"
+
+[samsung-gt-s3370/UC Browser8.3* UNTRUSTED/1.0]
+Parent="UC Browser 8.3"
+
+[*/UC Browser8.3* UNTRUSTED/1.0]
+Parent="UC Browser 8.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.4
+
+[UC Browser 8.4]
+Parent="DefaultProperties"
+Comment="UC Browser 8.4"
+Browser="UC Browser"
+Version="8.4"
+MajorVer=8
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.4*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.4* U2/*]
+Parent="UC Browser 8.4"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.4*]
+Parent="UC Browser 8.4"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.4*]
+Parent="UC Browser 8.4"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.4*]
+Parent="UC Browser 8.4"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4* Mobile Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4* Mobile Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4* Mobile Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.4*Safari/*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.4* Mobile*]
+Parent="UC Browser 8.4"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.4* UNTRUSTED/1.0]
+Parent="UC Browser 8.4"
+
+[samsung-gt-s3370/UC Browser8.4* UNTRUSTED/1.0]
+Parent="UC Browser 8.4"
+
+[*/UC Browser8.4* UNTRUSTED/1.0]
+Parent="UC Browser 8.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.5
+
+[UC Browser 8.5]
+Parent="DefaultProperties"
+Comment="UC Browser 8.5"
+Browser="UC Browser"
+Version="8.5"
+MajorVer=8
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.5*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.5* U2/*]
+Parent="UC Browser 8.5"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.5*]
+Parent="UC Browser 8.5"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.5*]
+Parent="UC Browser 8.5"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.5*]
+Parent="UC Browser 8.5"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5* Mobile Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5* Mobile Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5* Mobile Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.5*Safari/*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.5* Mobile*]
+Parent="UC Browser 8.5"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.5* UNTRUSTED/1.0]
+Parent="UC Browser 8.5"
+
+[samsung-gt-s3370/UC Browser8.5* UNTRUSTED/1.0]
+Parent="UC Browser 8.5"
+
+[*/UC Browser8.5* UNTRUSTED/1.0]
+Parent="UC Browser 8.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.6
+
+[UC Browser 8.6]
+Parent="DefaultProperties"
+Comment="UC Browser 8.6"
+Browser="UC Browser"
+Version="8.6"
+MajorVer=8
+MinorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.6*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.6* U2/*]
+Parent="UC Browser 8.6"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.6*]
+Parent="UC Browser 8.6"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.6*]
+Parent="UC Browser 8.6"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.6*]
+Parent="UC Browser 8.6"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6* Mobile Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6* Mobile Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6* Mobile Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.6*Safari/*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.6* Mobile*]
+Parent="UC Browser 8.6"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.6* UNTRUSTED/1.0]
+Parent="UC Browser 8.6"
+
+[samsung-gt-s3370/UC Browser8.6* UNTRUSTED/1.0]
+Parent="UC Browser 8.6"
+
+[*/UC Browser8.6* UNTRUSTED/1.0]
+Parent="UC Browser 8.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.7
+
+[UC Browser 8.7]
+Parent="DefaultProperties"
+Comment="UC Browser 8.7"
+Browser="UC Browser"
+Version="8.7"
+MajorVer=8
+MinorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.7*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.7* U2/*]
+Parent="UC Browser 8.7"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.7*]
+Parent="UC Browser 8.7"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.7*]
+Parent="UC Browser 8.7"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.7*]
+Parent="UC Browser 8.7"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7* Mobile Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7* Mobile Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7* Mobile Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.7*Safari/*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.7* Mobile*]
+Parent="UC Browser 8.7"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.7* UNTRUSTED/1.0]
+Parent="UC Browser 8.7"
+
+[samsung-gt-s3370/UC Browser8.7* UNTRUSTED/1.0]
+Parent="UC Browser 8.7"
+
+[*/UC Browser8.7* UNTRUSTED/1.0]
+Parent="UC Browser 8.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.8
+
+[UC Browser 8.8]
+Parent="DefaultProperties"
+Comment="UC Browser 8.8"
+Browser="UC Browser"
+Version="8.8"
+MajorVer=8
+MinorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.8*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.8* U2/*]
+Parent="UC Browser 8.8"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.8*]
+Parent="UC Browser 8.8"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.8*]
+Parent="UC Browser 8.8"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.8*]
+Parent="UC Browser 8.8"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8* Mobile Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8* Mobile Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8* Mobile Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.8*Safari/*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.8* Mobile*]
+Parent="UC Browser 8.8"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.8* UNTRUSTED/1.0]
+Parent="UC Browser 8.8"
+
+[samsung-gt-s3370/UC Browser8.8* UNTRUSTED/1.0]
+Parent="UC Browser 8.8"
+
+[*/UC Browser8.8* UNTRUSTED/1.0]
+Parent="UC Browser 8.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 8.9
+
+[UC Browser 8.9]
+Parent="DefaultProperties"
+Comment="UC Browser 8.9"
+Browser="UC Browser"
+Version="8.9"
+MajorVer=8
+MinorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB8.9*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *SonyEricssonU1) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S5570) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*GT-S7262) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/8.9* U2/*]
+Parent="UC Browser 8.9"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*GT-S7262) U2/* UCBrowser/8.9*]
+Parent="UC Browser 8.9"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/8.9*]
+Parent="UC Browser 8.9"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/8.9*]
+Parent="UC Browser 8.9"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9* Mobile Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9* Mobile Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9* Mobile Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/8.9*Safari/*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/8.9* Mobile*]
+Parent="UC Browser 8.9"
+Platform="Android"
+Win32="false"
+
+[samsung-gt-s5620/UC Browser8.9* UNTRUSTED/1.0]
+Parent="UC Browser 8.9"
+
+[samsung-gt-s3370/UC Browser8.9* UNTRUSTED/1.0]
+Parent="UC Browser 8.9"
+
+[*/UC Browser8.9* UNTRUSTED/1.0]
+Parent="UC Browser 8.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.2
+
+[UC Browser 7.2]
+Parent="DefaultProperties"
+Comment="UC Browser 7.2"
+Browser="UC Browser"
+Version="7.2"
+MajorVer=7
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[NokiaN73/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[NOKIAN85/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[Nokia5230/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[S8500 UCWEB6.0/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[lg-c105/UC Browser7.2*]
+Parent="UC Browser 7.2"
+
+[IUC(U;iOS 4.3*)/UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.2*]
+Parent="UC Browser 7.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.2* UNTRUSTED/1.0]
+Parent="UC Browser 7.2"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.2*]
+Parent="UC Browser 7.2"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.3
+
+[UC Browser 7.3]
+Parent="DefaultProperties"
+Comment="UC Browser 7.3"
+Browser="UC Browser"
+Version="7.3"
+MajorVer=7
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[NokiaN73/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[NOKIAN85/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[Nokia5230/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[S8500 UCWEB6.0/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[lg-c105/UC Browser7.3*]
+Parent="UC Browser 7.3"
+
+[IUC(U;iOS 4.3*)/UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.3*]
+Parent="UC Browser 7.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.3* UNTRUSTED/1.0]
+Parent="UC Browser 7.3"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.3*]
+Parent="UC Browser 7.3"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.4
+
+[UC Browser 7.4]
+Parent="DefaultProperties"
+Comment="UC Browser 7.4"
+Browser="UC Browser"
+Version="7.4"
+MajorVer=7
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[NokiaN73/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[NOKIAN85/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[Nokia5230/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[S8500 UCWEB6.0/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[lg-c105/UC Browser7.4*]
+Parent="UC Browser 7.4"
+
+[IUC(U;iOS 4.3*)/UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.4*]
+Parent="UC Browser 7.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.4* UNTRUSTED/1.0]
+Parent="UC Browser 7.4"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.4*]
+Parent="UC Browser 7.4"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.5
+
+[UC Browser 7.5]
+Parent="DefaultProperties"
+Comment="UC Browser 7.5"
+Browser="UC Browser"
+Version="7.5"
+MajorVer=7
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[NokiaN73/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[NOKIAN85/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[Nokia5230/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[S8500 UCWEB6.0/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[lg-c105/UC Browser7.5*]
+Parent="UC Browser 7.5"
+
+[IUC(U;iOS 4.3*)/UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.5*]
+Parent="UC Browser 7.5"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.5* UNTRUSTED/1.0]
+Parent="UC Browser 7.5"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.5*]
+Parent="UC Browser 7.5"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.6
+
+[UC Browser 7.6]
+Parent="DefaultProperties"
+Comment="UC Browser 7.6"
+Browser="UC Browser"
+Version="7.6"
+MajorVer=7
+MinorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[NokiaN73/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[NOKIAN85/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[Nokia5230/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[S8500 UCWEB6.0/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[lg-c105/UC Browser7.6*]
+Parent="UC Browser 7.6"
+
+[IUC(U;iOS 4.3*)/UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.6*]
+Parent="UC Browser 7.6"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.6* UNTRUSTED/1.0]
+Parent="UC Browser 7.6"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.6*]
+Parent="UC Browser 7.6"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.7
+
+[UC Browser 7.7]
+Parent="DefaultProperties"
+Comment="UC Browser 7.7"
+Browser="UC Browser"
+Version="7.7"
+MajorVer=7
+MinorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[NokiaN73/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[NOKIAN85/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[Nokia5230/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[S8500 UCWEB6.0/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[lg-c105/UC Browser7.7*]
+Parent="UC Browser 7.7"
+
+[IUC(U;iOS 4.3*)/UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.7*]
+Parent="UC Browser 7.7"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.7* UNTRUSTED/1.0]
+Parent="UC Browser 7.7"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.7*]
+Parent="UC Browser 7.7"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.8
+
+[UC Browser 7.8]
+Parent="DefaultProperties"
+Comment="UC Browser 7.8"
+Browser="UC Browser"
+Version="7.8"
+MajorVer=7
+MinorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[NokiaN73/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[NOKIAN85/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[Nokia5230/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[S8500 UCWEB6.0/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[lg-c105/UC Browser7.8*]
+Parent="UC Browser 7.8"
+
+[IUC(U;iOS 4.3*)/UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.8*]
+Parent="UC Browser 7.8"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.8* UNTRUSTED/1.0]
+Parent="UC Browser 7.8"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.8*]
+Parent="UC Browser 7.8"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 7.9
+
+[UC Browser 7.9]
+Parent="DefaultProperties"
+Comment="UC Browser 7.9"
+Browser="UC Browser"
+Version="7.9"
+MajorVer=7
+MinorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.2*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-S5570*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*GT-I9100*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*Micromax A35*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*Micromax A35*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*Micromax A35*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*Micromax A35*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC (Linux; U; 2.2*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC(Linux;U;Android2.2*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[JUC(Linux;U;Android2.3*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[NokiaE63/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[NokiaN73/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[NOKIAN85/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[Nokia5230/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[JUC(Linux;?;2.2*;Desire HD*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN97/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[S8500 UCWEB6.0/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[JUC(Linux;?;2.2*;XT702*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[NokiaN8-00/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[lg-c105/UC Browser7.9*]
+Parent="UC Browser 7.9"
+
+[IUC(U;iOS 4.3*)/UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; *) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.0*; GT-I9100; *) UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC(Linux;U;Android4.2.2;Zh_cn;GT-I9060;*)UCWEB7.9*]
+Parent="UC Browser 7.9"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[*/UC Browser7.9* UNTRUSTED/1.0]
+Parent="UC Browser 7.9"
+
+[LG-KS20* Browser/IEMobile/* MMS/LG-MMS-WINCE* (compatible; MSIE 4.01; Windows CE*)/UC Browser7.9*]
+Parent="UC Browser 7.9"
+Platform="WinCE"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 3.0
+
+[UC Browser 3.0]
+Parent="DefaultProperties"
+Comment="UC Browser 3.0"
+Browser="UC Browser"
+Version="3.0"
+MajorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB3.0*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0* U3/* *Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.0*Safari/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.0* Mobile*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*GT-P3100*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/3.0* U2/*]
+Parent="UC Browser 3.0"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+
+[Mozilla/*(iPad; *CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.0* U3/* Safari/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.0* U3/* Safari/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.0* U3/* Safari/*]
+Parent="UC Browser 3.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.0*]
+Parent="UC Browser 3.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 3.1
+
+[UC Browser 3.1]
+Parent="DefaultProperties"
+Comment="UC Browser 3.1"
+Browser="UC Browser"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB3.1*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1* U3/* *Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.1*Safari/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.1* Mobile*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*GT-P3100*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/3.1* U2/*]
+Parent="UC Browser 3.1"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+
+[Mozilla/*(iPad; *CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.1* U3/* Safari/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.1* U3/* Safari/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.1* U3/* Safari/*]
+Parent="UC Browser 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.1*]
+Parent="UC Browser 3.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 3.2
+
+[UC Browser 3.2]
+Parent="DefaultProperties"
+Comment="UC Browser 3.2"
+Browser="UC Browser"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB3.2*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2* U3/* *Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.2*Safari/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.2* Mobile*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*GT-P3100*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/3.2* U2/*]
+Parent="UC Browser 3.2"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+
+[Mozilla/*(iPad; *CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.2* U3/* Safari/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.2* U3/* Safari/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.2* U3/* Safari/*]
+Parent="UC Browser 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.2*]
+Parent="UC Browser 3.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 3.3
+
+[UC Browser 3.3]
+Parent="DefaultProperties"
+Comment="UC Browser 3.3"
+Browser="UC Browser"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB3.3*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3* U3/* *Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.3*Safari/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.3* Mobile*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*GT-P3100*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/3.3* U2/*]
+Parent="UC Browser 3.3"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+
+[Mozilla/*(iPad; *CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.3* U3/* Safari/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.3* U3/* Safari/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.3* U3/* Safari/*]
+Parent="UC Browser 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.3*]
+Parent="UC Browser 3.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 3.4
+
+[UC Browser 3.4]
+Parent="DefaultProperties"
+Comment="UC Browser 3.4"
+Browser="UC Browser"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB3.4*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4* U3/* *Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/3.4*Safari/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/3.4* Mobile*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*SAMSUNG; GT-I8350*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*GT-P3100*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/3.4* U2/*]
+Parent="UC Browser 3.4"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+
+[Mozilla/*(iPad; *CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.4* U3/* Safari/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.4* U3/* Safari/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad; *CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/3.4* U3/* Safari/*]
+Parent="UC Browser 3.4"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* UCBrowser/3.4*]
+Parent="UC Browser 3.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 2.0
+
+[UC Browser 2.0]
+Parent="DefaultProperties"
+Comment="UC Browser 2.0"
+Browser="UC Browser"
+Version="2.0"
+MajorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0* U3/* *Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.0*Safari/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.0* Mobile*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/2.0* U2/*]
+Parent="UC Browser 2.0"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/2.0*]
+Parent="UC Browser 2.0"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/2.0*]
+Parent="UC Browser 2.0"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.0* U3/* Safari/*]
+Parent="UC Browser 2.0"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 Mobile Safari/* UCBrowser/2.0*]
+Parent="UC Browser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 2.1
+
+[UC Browser 2.1]
+Parent="DefaultProperties"
+Comment="UC Browser 2.1"
+Browser="UC Browser"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1* U3/* *Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.1*Safari/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.1* Mobile*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/2.1* U2/*]
+Parent="UC Browser 2.1"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/2.1*]
+Parent="UC Browser 2.1"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/2.1*]
+Parent="UC Browser 2.1"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.1* U3/* Safari/*]
+Parent="UC Browser 2.1"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 Mobile Safari/* UCBrowser/2.1*]
+Parent="UC Browser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 2.2
+
+[UC Browser 2.2]
+Parent="DefaultProperties"
+Comment="UC Browser 2.2"
+Browser="UC Browser"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2* U3/* *Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.2*Safari/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.2* Mobile*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/2.2* U2/*]
+Parent="UC Browser 2.2"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/2.2*]
+Parent="UC Browser 2.2"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/2.2*]
+Parent="UC Browser 2.2"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.2* U3/* Safari/*]
+Parent="UC Browser 2.2"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 Mobile Safari/* UCBrowser/2.2*]
+Parent="UC Browser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser 2.3
+
+[UC Browser 2.3]
+Parent="DefaultProperties"
+Comment="UC Browser 2.3"
+Browser="UC Browser"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[JUC(Linux;U;Android2.3*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 2.3*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[JUC (Linux; U; 4.0*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[JUC (Linux; U; 4.1*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[JUC (Linux; U; 4.2*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[JUC (Linux; U; 4.3*) UCWEB2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3* U3/* *Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) UCBrowser/2.3*Safari/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari/* UCBrowser/2.3* Mobile*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+Win32="false"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="4.4"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="WinPhone7"
+Platform_Version="7.0"
+Win32="false"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="WinPhone8"
+Platform_Version="8.0"
+Win32="false"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/2.3* U2/*]
+Parent="UC Browser 2.3"
+Platform="SymbianOS"
+Win32="false"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/2.3*]
+Parent="UC Browser 2.3"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/2.3*]
+Parent="UC Browser 2.3"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/*(iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) UCBrowser/2.3* U3/* Safari/*]
+Parent="UC Browser 2.3"
+Platform="iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 Mobile Safari/* UCBrowser/2.3*]
+Parent="UC Browser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser
+
+[UC Browser]
+Parent="DefaultProperties"
+Comment="UC Browser"
+Browser="UC Browser"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Java;*samsung*) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*]
+Parent="UC Browser"
+Version="8.2"
+MajorVer=8
+MinorVer=2
+Platform="JAVA"
+
+[Mozilla/5.0 (Java;*samsung-gt-s5263) UCBrowser8.2*UCWEB*Mobile*UNTRUSTED/*]
+Parent="UC Browser"
+Version="8.2"
+MajorVer=8
+MinorVer=2
+Platform="JAVA"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; UC Browser Generic
+
+[UC Browser Generic]
+Parent="DefaultProperties"
+Comment="UC Browser Generic"
+Browser="UC Browser"
+isMobileDevice="true"
+CssVersion=1
+
+[JUC(Linux;U;Android2.3*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.3"
+
+[JUC (Linux; U; 2.3*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.3"
+
+[JUC (Linux; U; 4.0*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.0"
+
+[JUC (Linux; U; 4.1*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.1"
+
+[JUC (Linux; U; 4.2*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.2"
+
+[JUC (Linux; U; 4.3*) UCWEB*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.3"
+
+[UCWEB/*(*; U; Adr 2.1*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.2"
+
+[UCWEB/*(*; U; Adr 2.2*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.2"
+
+[UCWEB/*(*; U; Adr 2.3*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.3"
+
+[UCWEB/*(*; U; Adr 4.0*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.0"
+
+[UCWEB/*(*; U; Adr 4.1*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.1"
+
+[UCWEB/*(*; U; Adr 4.2*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.2"
+
+[UCWEB/*(*; U; Adr 4.3*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.3"
+
+[UCWEB/*(*; U; Adr 4.4*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="4.4"
+
+[UCWEB/*(*iOS; U; iPh OS 5_0*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="5.0"
+
+[UCWEB/*(*iOS; U; iPh OS 5_1*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="5.1"
+
+[UCWEB/*(*iOS; U; iPh OS 6_0*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="6.0"
+
+[UCWEB/*(*iOS; U; iPh OS 6_1*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="6.1"
+
+[UCWEB/*(*iOS; U; iPh OS 7_0*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="7.0"
+
+[UCWEB/*(*iOS; U; iPh OS 7_1*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="7.1"
+
+[UCWEB/*(*iOS; U; iPh OS 8_0*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="iOS"
+Platform_Version="8.0"
+
+[UCWEB/*(*Windows; U; wds 7*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[UCWEB/*(*Windows; U; wds 8*) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="WinPhone8"
+Platform_Version="8.0"
+
+[UCWEB/*(*Symbian; U; *) U2/* UCBrowser/* U2/*]
+Parent="UC Browser Generic"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) UC AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="UC Browser Generic"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android*) UC AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="UC Browser Generic"
+Platform="Android"
+
+[UCWEB/*(Linux; U; Opera Mini/*) U2/* UCBrowser/*]
+Parent="UC Browser Generic"
+
+[UCWEB/*(Android; U; Opera Mini/*) U2/* UCBrowser/*]
+Parent="UC Browser Generic"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 28.0
+
+[Iron 28.0]
+Parent="DefaultProperties"
+Comment="Iron 28.0"
+Browser="Iron"
+Version="28.0"
+MajorVer=28
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/28.*Chrome/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/28.*Iron/28.*Safari/*]
+Parent="Iron 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 29.0
+
+[Iron 29.0]
+Parent="DefaultProperties"
+Comment="Iron 29.0"
+Browser="Iron"
+Version="29.0"
+MajorVer=29
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/29.*Chrome/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/29.*Iron/29.*Safari/*]
+Parent="Iron 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 30.0
+
+[Iron 30.0]
+Parent="DefaultProperties"
+Comment="Iron 30.0"
+Browser="Iron"
+Version="30.0"
+MajorVer=30
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/30.*Chrome/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/30.*Iron/30.*Safari/*]
+Parent="Iron 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 31.0
+
+[Iron 31.0]
+Parent="DefaultProperties"
+Comment="Iron 31.0"
+Browser="Iron"
+Version="31.0"
+MajorVer=31
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/31.*Chrome/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/31.*Iron/31.*Safari/*]
+Parent="Iron 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 32.0
+
+[Iron 32.0]
+Parent="DefaultProperties"
+Comment="Iron 32.0"
+Browser="Iron"
+Version="32.0"
+MajorVer=32
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/32.*Chrome/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/32.*Iron/32.*Safari/*]
+Parent="Iron 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 33.0
+
+[Iron 33.0]
+Parent="DefaultProperties"
+Comment="Iron 33.0"
+Browser="Iron"
+Version="33.0"
+MajorVer=33
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/33.*Chrome/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/33.*Iron/33.*Safari/*]
+Parent="Iron 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 34.0
+
+[Iron 34.0]
+Parent="DefaultProperties"
+Comment="Iron 34.0"
+Browser="Iron"
+Version="34.0"
+MajorVer=34
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/34.*Chrome/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/34.*Iron/34.*Safari/*]
+Parent="Iron 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 35.0
+
+[Iron 35.0]
+Parent="DefaultProperties"
+Comment="Iron 35.0"
+Browser="Iron"
+Version="35.0"
+MajorVer=35
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/35.*Chrome/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/35.*Iron/35.*Safari/*]
+Parent="Iron 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 36.0
+
+[Iron 36.0]
+Parent="DefaultProperties"
+Comment="Iron 36.0"
+Browser="Iron"
+Version="36.0"
+MajorVer=36
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/36.*Chrome/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/36.*Iron/36.*Safari/*]
+Parent="Iron 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 37.0
+
+[Iron 37.0]
+Parent="DefaultProperties"
+Comment="Iron 37.0"
+Browser="Iron"
+Version="37.0"
+MajorVer=37
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/37.*Chrome/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/37.*Iron/37.*Safari/*]
+Parent="Iron 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 38.0
+
+[Iron 38.0]
+Parent="DefaultProperties"
+Comment="Iron 38.0"
+Browser="Iron"
+Version="38.0"
+MajorVer=38
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/38.*Chrome/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/38.*Iron/38.*Safari/*]
+Parent="Iron 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 39.0
+
+[Iron 39.0]
+Parent="DefaultProperties"
+Comment="Iron 39.0"
+Browser="Iron"
+Version="39.0"
+MajorVer=39
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/39.*Chrome/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/39.*Iron/39.*Safari/*]
+Parent="Iron 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Puffin 3.7
+
+[Puffin 3.7]
+Parent="DefaultProperties"
+Comment="Puffin 3.7"
+Browser="Puffin"
+Version="3.7"
+MajorVer=3
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/3.7*AP*]
+Parent="Puffin 3.7"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/3.7*AT*]
+Parent="Puffin 3.7"
+Platform="Android"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/3.7*IP*]
+Parent="Puffin 3.7"
+Platform="iOS"
+
+[Mozilla/5.0 (*Linux x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/3.7*IT*]
+Parent="Puffin 3.7"
+Platform="iOS"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Keyword Tool
+
+[Google Keyword Tool]
+Parent="DefaultProperties"
+Comment="Google Keyword Tool"
+Browser="Google Keyword Tool"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Google Keyword Tool;*)]
+Parent="Google Keyword Tool"
+
+[Mozilla/5.0 (*Google Keyword Tool*)]
+Parent="Google Keyword Tool"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 20.0
+
+[Iron 20.0]
+Parent="DefaultProperties"
+Comment="Iron 20.0"
+Browser="Iron"
+Version="20.0"
+MajorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/20.*Chrome/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/20.*Iron/20.*Safari/*]
+Parent="Iron 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 21.0
+
+[Iron 21.0]
+Parent="DefaultProperties"
+Comment="Iron 21.0"
+Browser="Iron"
+Version="21.0"
+MajorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/21.*Chrome/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/21.*Iron/21.*Safari/*]
+Parent="Iron 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 22.0
+
+[Iron 22.0]
+Parent="DefaultProperties"
+Comment="Iron 22.0"
+Browser="Iron"
+Version="22.0"
+MajorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/22.*Chrome/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/22.*Iron/22.*Safari/*]
+Parent="Iron 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 23.0
+
+[Iron 23.0]
+Parent="DefaultProperties"
+Comment="Iron 23.0"
+Browser="Iron"
+Version="23.0"
+MajorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/23.*Chrome/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/23.*Iron/23.*Safari/*]
+Parent="Iron 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 24.0
+
+[Iron 24.0]
+Parent="DefaultProperties"
+Comment="Iron 24.0"
+Browser="Iron"
+Version="24.0"
+MajorVer=24
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/24.*Chrome/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/24.*Iron/24.*Safari/*]
+Parent="Iron 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 25.0
+
+[Iron 25.0]
+Parent="DefaultProperties"
+Comment="Iron 25.0"
+Browser="Iron"
+Version="25.0"
+MajorVer=25
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/25.*Chrome/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/25.*Iron/25.*Safari/*]
+Parent="Iron 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 26.0
+
+[Iron 26.0]
+Parent="DefaultProperties"
+Comment="Iron 26.0"
+Browser="Iron"
+Version="26.0"
+MajorVer=26
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/26.*Chrome/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/26.*Iron/26.*Safari/*]
+Parent="Iron 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 27.0
+
+[Iron 27.0]
+Parent="DefaultProperties"
+Comment="Iron 27.0"
+Browser="Iron"
+Version="27.0"
+MajorVer=27
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/27.*Chrome/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/27.*Iron/27.*Safari/*]
+Parent="Iron 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Puffin
+
+[Puffin]
+Parent="DefaultProperties"
+Comment="Puffin"
+Browser="Puffin"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AP Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.5"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.6"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.*AT Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/2.* Mobile]
+Parent="Puffin"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Puffin/* Mobile]
+Parent="Puffin"
+Platform="Android"
+Platform_Version="4.4"
+
+[Puffin%20Free/* CFNetwork/* *Darwin*]
+Parent="Puffin"
+Platform="Darwin"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Keyword Suggestion
+
+[Google Keyword Suggestion]
+Parent="DefaultProperties"
+Comment="Google Keyword Suggestion"
+Browser="Google Keyword Suggestion"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Google Keyword Suggestion) Chrome/* Safari/*]
+Parent="Google Keyword Suggestion"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko, Google Keyword Suggestion) Chrome/* Safari/*]
+Parent="Google Keyword Suggestion"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Google Keyword Suggestion) Chrome/* Safari/*]
+Parent="Google Keyword Suggestion"
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; Google Keyword Suggestion*)]
+Parent="Google Keyword Suggestion"
+
+[Mozilla/5.0 (*Google Keyword Suggestion*)]
+Parent="Google Keyword Suggestion"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 6.0
+
+[Iron 6.0]
+Parent="DefaultProperties"
+Comment="Iron 6.0"
+Browser="Iron"
+Version="6.0"
+MajorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/6.*Chrome/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/6.*Iron/6.*Safari/*]
+Parent="Iron 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 7.0
+
+[Iron 7.0]
+Parent="DefaultProperties"
+Comment="Iron 7.0"
+Browser="Iron"
+Version="7.0"
+MajorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/7.*Chrome/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/7.*Iron/7.*Safari/*]
+Parent="Iron 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 8.0
+
+[Iron 8.0]
+Parent="DefaultProperties"
+Comment="Iron 8.0"
+Browser="Iron"
+Version="8.0"
+MajorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/8.*Chrome/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/8.*Iron/8.*Safari/*]
+Parent="Iron 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 9.0
+
+[Iron 9.0]
+Parent="DefaultProperties"
+Comment="Iron 9.0"
+Browser="Iron"
+Version="9.0"
+MajorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/9.*Chrome/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/9.*Iron/9.*Safari/*]
+Parent="Iron 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 10.0
+
+[Iron 10.0]
+Parent="DefaultProperties"
+Comment="Iron 10.0"
+Browser="Iron"
+Version="10.0"
+MajorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/10.*Chrome/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/10.*Iron/10.*Safari/*]
+Parent="Iron 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 11.0
+
+[Iron 11.0]
+Parent="DefaultProperties"
+Comment="Iron 11.0"
+Browser="Iron"
+Version="11.0"
+MajorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/11.*Chrome/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/11.*Iron/11.*Safari/*]
+Parent="Iron 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 12.0
+
+[Iron 12.0]
+Parent="DefaultProperties"
+Comment="Iron 12.0"
+Browser="Iron"
+Version="12.0"
+MajorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/12.*Chrome/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/12.*Iron/12.*Safari/*]
+Parent="Iron 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 13.0
+
+[Iron 13.0]
+Parent="DefaultProperties"
+Comment="Iron 13.0"
+Browser="Iron"
+Version="13.0"
+MajorVer=13
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/13.*Chrome/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/13.*Iron/13.*Safari/*]
+Parent="Iron 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 14.0
+
+[Iron 14.0]
+Parent="DefaultProperties"
+Comment="Iron 14.0"
+Browser="Iron"
+Version="14.0"
+MajorVer=14
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/14.*Chrome/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/14.*Iron/14.*Safari/*]
+Parent="Iron 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 15.0
+
+[Iron 15.0]
+Parent="DefaultProperties"
+Comment="Iron 15.0"
+Browser="Iron"
+Version="15.0"
+MajorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/15.*Chrome/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/15.*Iron/15.*Safari/*]
+Parent="Iron 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 16.0
+
+[Iron 16.0]
+Parent="DefaultProperties"
+Comment="Iron 16.0"
+Browser="Iron"
+Version="16.0"
+MajorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/16.*Chrome/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/16.*Iron/16.*Safari/*]
+Parent="Iron 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 17.0
+
+[Iron 17.0]
+Parent="DefaultProperties"
+Comment="Iron 17.0"
+Browser="Iron"
+Version="17.0"
+MajorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/17.*Chrome/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/17.*Iron/17.*Safari/*]
+Parent="Iron 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 18.0
+
+[Iron 18.0]
+Parent="DefaultProperties"
+Comment="Iron 18.0"
+Browser="Iron"
+Version="18.0"
+MajorVer=18
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/18.*Chrome/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/18.*Iron/18.*Safari/*]
+Parent="Iron 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 19.0
+
+[Iron 19.0]
+Parent="DefaultProperties"
+Comment="Iron 19.0"
+Browser="Iron"
+Version="19.0"
+MajorVer=19
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/19.*Chrome/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Chrome/19.*Iron/19.*Safari/*]
+Parent="Iron 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Web Preview
+
+[Google Web Preview]
+Parent="DefaultProperties"
+Comment="Google"
+Browser="Google Web Preview"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko? Google Web Preview*)*Chrome/*Safari/*]
+Parent="Google Web Preview"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko? Google Web Preview*)*Chrome/*Safari/*]
+Parent="Google Web Preview"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko? Google Web Preview*)*Chrome/*Safari/*]
+Parent="Google Web Preview"
+Platform="Linux"
+
+[*Google Web Preview*]
+Parent="Google Web Preview"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 5.0
+
+[Iron 5.0]
+Parent="DefaultProperties"
+Comment="Iron 5.0"
+Browser="Iron"
+Version="5.0"
+MajorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Safari/*]
+Parent="Iron 5.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/5.*Chrome/*Safari/*]
+Parent="Iron 5.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 4.0
+
+[Iron 4.0]
+Parent="DefaultProperties"
+Comment="Iron 4.0"
+Browser="Iron"
+Version="4.0"
+MajorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Safari/*]
+Parent="Iron 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/4.*Chrome/*Safari/*]
+Parent="Iron 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 3.0
+
+[Iron 3.0]
+Parent="DefaultProperties"
+Comment="Iron 3.0"
+Browser="Iron"
+Version="3.0"
+MajorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/3.0*Safari/*]
+Parent="Iron 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/3.0*Safari/*]
+Parent="Iron 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/3.0*Safari/*]
+Parent="Iron 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/3.0*Safari/*]
+Parent="Iron 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 2.0
+
+[Iron 2.0]
+Parent="DefaultProperties"
+Comment="Iron 2.0"
+Browser="Iron"
+Version="2.0"
+MajorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/2.0*Safari/*]
+Parent="Iron 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/2.0*Safari/*]
+Parent="Iron 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/2.0*Safari/*]
+Parent="Iron 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/2.0*Safari/*]
+Parent="Iron 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.38
+
+[Silk 3.38]
+Parent="DefaultProperties"
+Comment="Silk 3.38"
+Browser="Silk"
+Version="3.38"
+MajorVer=3
+MinorVer=38
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* like Chrome/* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.38* Safari*]
+Parent="Silk 3.38"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.37
+
+[Silk 3.37]
+Parent="DefaultProperties"
+Comment="Silk 3.37"
+Browser="Silk"
+Version="3.37"
+MajorVer=3
+MinorVer=37
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* like Chrome/* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.37* Safari*]
+Parent="Silk 3.37"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.36
+
+[Silk 3.36]
+Parent="DefaultProperties"
+Comment="Silk 3.36"
+Browser="Silk"
+Version="3.36"
+MajorVer=3
+MinorVer=36
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* like Chrome/* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.36* Safari*]
+Parent="Silk 3.36"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.35
+
+[Silk 3.35]
+Parent="DefaultProperties"
+Comment="Silk 3.35"
+Browser="Silk"
+Version="3.35"
+MajorVer=3
+MinorVer=35
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* like Chrome/* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.35* Safari*]
+Parent="Silk 3.35"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.34
+
+[Silk 3.34]
+Parent="DefaultProperties"
+Comment="Silk 3.34"
+Browser="Silk"
+Version="3.34"
+MajorVer=3
+MinorVer=34
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* like Chrome/* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.34* Safari*]
+Parent="Silk 3.34"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.33
+
+[Silk 3.33]
+Parent="DefaultProperties"
+Comment="Silk 3.33"
+Browser="Silk"
+Version="3.33"
+MajorVer=3
+MinorVer=33
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* like Chrome/* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.33* Safari*]
+Parent="Silk 3.33"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.32
+
+[Silk 3.32]
+Parent="DefaultProperties"
+Comment="Silk 3.32"
+Browser="Silk"
+Version="3.32"
+MajorVer=3
+MinorVer=32
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* like Chrome/* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.32* Safari*]
+Parent="Silk 3.32"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.31
+
+[Silk 3.31]
+Parent="DefaultProperties"
+Comment="Silk 3.31"
+Browser="Silk"
+Version="3.31"
+MajorVer=3
+MinorVer=31
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* like Chrome/* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.31* Safari*]
+Parent="Silk 3.31"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.30
+
+[Silk 3.30]
+Parent="DefaultProperties"
+Comment="Silk 3.30"
+Browser="Silk"
+Version="3.30"
+MajorVer=3
+MinorVer=30
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* like Chrome/* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.30* Safari*]
+Parent="Silk 3.30"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.29
+
+[Silk 3.29]
+Parent="DefaultProperties"
+Comment="Silk 3.29"
+Browser="Silk"
+Version="3.29"
+MajorVer=3
+MinorVer=29
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* like Chrome/* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.29* Safari*]
+Parent="Silk 3.29"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.28
+
+[Silk 3.28]
+Parent="DefaultProperties"
+Comment="Silk 3.28"
+Browser="Silk"
+Version="3.28"
+MajorVer=3
+MinorVer=28
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* like Chrome/* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.28* Safari*]
+Parent="Silk 3.28"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.27
+
+[Silk 3.27]
+Parent="DefaultProperties"
+Comment="Silk 3.27"
+Browser="Silk"
+Version="3.27"
+MajorVer=3
+MinorVer=27
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* like Chrome/* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.27* Safari*]
+Parent="Silk 3.27"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.26
+
+[Silk 3.26]
+Parent="DefaultProperties"
+Comment="Silk 3.26"
+Browser="Silk"
+Version="3.26"
+MajorVer=3
+MinorVer=26
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* like Chrome/* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.26* Safari*]
+Parent="Silk 3.26"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.25
+
+[Silk 3.25]
+Parent="DefaultProperties"
+Comment="Silk 3.25"
+Browser="Silk"
+Version="3.25"
+MajorVer=3
+MinorVer=25
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* like Chrome/* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.25* Safari*]
+Parent="Silk 3.25"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.24
+
+[Silk 3.24]
+Parent="DefaultProperties"
+Comment="Silk 3.24"
+Browser="Silk"
+Version="3.24"
+MajorVer=3
+MinorVer=24
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* like Chrome/* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.24* Safari*]
+Parent="Silk 3.24"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.23
+
+[Silk 3.23]
+Parent="DefaultProperties"
+Comment="Silk 3.23"
+Browser="Silk"
+Version="3.23"
+MajorVer=3
+MinorVer=23
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* like Chrome/* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.23* Safari*]
+Parent="Silk 3.23"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.22
+
+[Silk 3.22]
+Parent="DefaultProperties"
+Comment="Silk 3.22"
+Browser="Silk"
+Version="3.22"
+MajorVer=3
+MinorVer=22
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* like Chrome/* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.22* Safari*]
+Parent="Silk 3.22"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.21
+
+[Silk 3.21]
+Parent="DefaultProperties"
+Comment="Silk 3.21"
+Browser="Silk"
+Version="3.21"
+MajorVer=3
+MinorVer=21
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* like Chrome/* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.4"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.21* Safari*]
+Parent="Silk 3.21"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 1.0
+
+[Iron 1.0]
+Parent="DefaultProperties"
+Comment="Iron 1.0"
+Browser="Iron"
+Version="1.0"
+MajorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/1.0*Safari/*]
+Parent="Iron 1.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/1.0*Safari/*]
+Parent="Iron 1.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/1.0*Safari/*]
+Parent="Iron 1.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/1.0*Safari/*]
+Parent="Iron 1.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.20
+
+[Silk 3.20]
+Parent="DefaultProperties"
+Comment="Silk 3.20"
+Browser="Silk"
+Version="3.20"
+MajorVer=3
+MinorVer=20
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.20* Safari*]
+Parent="Silk 3.20"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.19
+
+[Silk 3.19]
+Parent="DefaultProperties"
+Comment="Silk 3.19"
+Browser="Silk"
+Version="3.19"
+MajorVer=3
+MinorVer=19
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.19* Safari*]
+Parent="Silk 3.19"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.18
+
+[Silk 3.18]
+Parent="DefaultProperties"
+Comment="Silk 3.18"
+Browser="Silk"
+Version="3.18"
+MajorVer=3
+MinorVer=18
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.18* Safari*]
+Parent="Silk 3.18"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.17
+
+[Silk 3.17]
+Parent="DefaultProperties"
+Comment="Silk 3.17"
+Browser="Silk"
+Version="3.17"
+MajorVer=3
+MinorVer=17
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.17* Safari*]
+Parent="Silk 3.17"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.16
+
+[Silk 3.16]
+Parent="DefaultProperties"
+Comment="Silk 3.16"
+Browser="Silk"
+Version="3.16"
+MajorVer=3
+MinorVer=16
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.16* Safari*]
+Parent="Silk 3.16"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.15
+
+[Silk 3.15]
+Parent="DefaultProperties"
+Comment="Silk 3.15"
+Browser="Silk"
+Version="3.15"
+MajorVer=3
+MinorVer=15
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.15* Safari*]
+Parent="Silk 3.15"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.14
+
+[Silk 3.14]
+Parent="DefaultProperties"
+Comment="Silk 3.14"
+Browser="Silk"
+Version="3.14"
+MajorVer=3
+MinorVer=14
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.14* Safari*]
+Parent="Silk 3.14"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.13
+
+[Silk 3.13]
+Parent="DefaultProperties"
+Comment="Silk 3.13"
+Browser="Silk"
+Version="3.13"
+MajorVer=3
+MinorVer=13
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.13* Safari*]
+Parent="Silk 3.13"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.12
+
+[Silk 3.12]
+Parent="DefaultProperties"
+Comment="Silk 3.12"
+Browser="Silk"
+Version="3.12"
+MajorVer=3
+MinorVer=12
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.12* Safari*]
+Parent="Silk 3.12"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.11
+
+[Silk 3.11]
+Parent="DefaultProperties"
+Comment="Silk 3.11"
+Browser="Silk"
+Version="3.11"
+MajorVer=3
+MinorVer=11
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.11* Safari*]
+Parent="Silk 3.11"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.10
+
+[Silk 3.10]
+Parent="DefaultProperties"
+Comment="Silk 3.10"
+Browser="Silk"
+Version="3.10"
+MajorVer=3
+MinorVer=10
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.10* Safari*]
+Parent="Silk 3.10"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.9
+
+[Silk 3.9]
+Parent="DefaultProperties"
+Comment="Silk 3.9"
+Browser="Silk"
+Version="3.9"
+MajorVer=3
+MinorVer=9
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.9* Safari*]
+Parent="Silk 3.9"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.8
+
+[Silk 3.8]
+Parent="DefaultProperties"
+Comment="Silk 3.8"
+Browser="Silk"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.8* Safari*]
+Parent="Silk 3.8"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.7
+
+[Silk 3.7]
+Parent="DefaultProperties"
+Comment="Silk 3.7"
+Browser="Silk"
+Version="3.7"
+MajorVer=3
+MinorVer=7
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.7* Safari*]
+Parent="Silk 3.7"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.6
+
+[Silk 3.6]
+Parent="DefaultProperties"
+Comment="Silk 3.6"
+Browser="Silk"
+Version="3.6"
+MajorVer=3
+MinorVer=6
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.6* Safari*]
+Parent="Silk 3.6"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.5
+
+[Silk 3.5]
+Parent="DefaultProperties"
+Comment="Silk 3.5"
+Browser="Silk"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.5* Safari*]
+Parent="Silk 3.5"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.4
+
+[Silk 3.4]
+Parent="DefaultProperties"
+Comment="Silk 3.4"
+Browser="Silk"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFSOWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTHWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFAPWA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.4* Safari*]
+Parent="Silk 3.4"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.4
+
+[Iron 0.4]
+Parent="DefaultProperties"
+Comment="Iron 0.4"
+Browser="Iron"
+Version="0.4"
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.4*Safari/*]
+Parent="Iron 0.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.4*Safari/*]
+Parent="Iron 0.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.4*Safari/*]
+Parent="Iron 0.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.4*Safari/*]
+Parent="Iron 0.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.3
+
+[Silk 3.3]
+Parent="DefaultProperties"
+Comment="Silk 3.3"
+Browser="Silk"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.3* Safari*]
+Parent="Silk 3.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.3* Safari*]
+Parent="Silk 3.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.3* Safari*]
+Parent="Silk 3.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.3* Safari*]
+Parent="Silk 3.3"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.3
+
+[Iron 0.3]
+Parent="DefaultProperties"
+Comment="Iron 0.3"
+Browser="Iron"
+Version="0.3"
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.3*Safari/*]
+Parent="Iron 0.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.3*Safari/*]
+Parent="Iron 0.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.3*Safari/*]
+Parent="Iron 0.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.3*Safari/*]
+Parent="Iron 0.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Midori 0.1
+
+[Midori 0.1]
+Parent="DefaultProperties"
+Comment="Midori 0.1"
+Browser="Midori"
+Version="0.1"
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* Midori/0.1*]
+Parent="Midori 0.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Midori/0.1* (*Linux*x86_64*) WebKit/*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.1* (*Linux i686*) WebKit/*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.1* (*Linux*) WebKit/*]
+Parent="Midori 0.1"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.1* (*FreeBSD*) WebKit/*]
+Parent="Midori 0.1"
+Platform="FreeBSD"
+Win32="false"
+
+[Midori/0.1* (*Windows; U*) WebKit/*]
+Parent="Midori 0.1"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Midori 0.2
+
+[Midori 0.2]
+Parent="DefaultProperties"
+Comment="Midori 0.2"
+Browser="Midori"
+Version="0.2"
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* Midori/0.2*]
+Parent="Midori 0.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Midori/0.2* (*Linux*x86_64*) WebKit/*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.2* (*Linux i686*) WebKit/*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.2* (*Linux*) WebKit/*]
+Parent="Midori 0.2"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.2* (*FreeBSD*) WebKit/*]
+Parent="Midori 0.2"
+Platform="FreeBSD"
+Win32="false"
+
+[Midori/0.2* (*Windows; U*) WebKit/*]
+Parent="Midori 0.2"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Midori 0.3
+
+[Midori 0.3]
+Parent="DefaultProperties"
+Comment="Midori 0.3"
+Browser="Midori"
+Version="0.3"
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* Midori/0.3*]
+Parent="Midori 0.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Midori/0.3* (*Linux*x86_64*) WebKit/*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.3* (*Linux i686*) WebKit/*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.3* (*Linux*) WebKit/*]
+Parent="Midori 0.3"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.3* (*FreeBSD*) WebKit/*]
+Parent="Midori 0.3"
+Platform="FreeBSD"
+Win32="false"
+
+[Midori/0.3* (*Windows; U*) WebKit/*]
+Parent="Midori 0.3"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Midori 0.4
+
+[Midori 0.4]
+Parent="DefaultProperties"
+Comment="Midori 0.4"
+Browser="Midori"
+Version="0.4"
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* Midori/0.4*]
+Parent="Midori 0.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Midori/0.4* (*Linux*x86_64*) WebKit/*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.4* (*Linux i686*) WebKit/*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.4* (*Linux*) WebKit/*]
+Parent="Midori 0.4"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.4* (*FreeBSD*) WebKit/*]
+Parent="Midori 0.4"
+Platform="FreeBSD"
+Win32="false"
+
+[Midori/0.4* (*Windows; U*) WebKit/*]
+Parent="Midori 0.4"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Midori 0.5
+
+[Midori 0.5]
+Parent="DefaultProperties"
+Comment="Midori 0.5"
+Browser="Midori"
+Version="0.5"
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* Midori/0.5*]
+Parent="Midori 0.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Midori/0.5* (*Linux*x86_64*) WebKit/*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.5* (*Linux i686*) WebKit/*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.5* (*Linux*) WebKit/*]
+Parent="Midori 0.5"
+Platform="Linux"
+Win32="false"
+
+[Midori/0.5* (*FreeBSD*) WebKit/*]
+Parent="Midori 0.5"
+Platform="FreeBSD"
+Win32="false"
+
+[Midori/0.5* (*Windows; U*) WebKit/*]
+Parent="Midori 0.5"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.2
+
+[Silk 3.2]
+Parent="DefaultProperties"
+Comment="Silk 3.2"
+Browser="Silk"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.2* Safari*]
+Parent="Silk 3.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.2* Safari*]
+Parent="Silk 3.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (PlayStation Vita*) AppleWebKit/* (KHTML, like Gecko) Silk/3.2*]
+Parent="Silk 3.2"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.2* Safari*]
+Parent="Silk 3.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.2* Safari*]
+Parent="Silk 3.2"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.9
+
+[RockMelt 0.9]
+Parent="DefaultProperties"
+Comment="RockMelt 0.9"
+Browser="RockMelt"
+Version="0.9"
+MinorVer=9
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.9* Chrome/*Safari/*]
+Parent="RockMelt 0.9"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.10
+
+[RockMelt 0.10]
+Parent="DefaultProperties"
+Comment="RockMelt 0.10"
+Browser="RockMelt"
+Version="0.10"
+MinorVer=10
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.10* Chrome/*Safari/*]
+Parent="RockMelt 0.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.11
+
+[RockMelt 0.11]
+Parent="DefaultProperties"
+Comment="RockMelt 0.11"
+Browser="RockMelt"
+Version="0.11"
+MinorVer=11
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.11* Chrome/*Safari/*]
+Parent="RockMelt 0.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.12
+
+[RockMelt 0.12]
+Parent="DefaultProperties"
+Comment="RockMelt 0.12"
+Browser="RockMelt"
+Version="0.12"
+MinorVer=12
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.12* Chrome/*Safari/*]
+Parent="RockMelt 0.12"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.13
+
+[RockMelt 0.13]
+Parent="DefaultProperties"
+Comment="RockMelt 0.13"
+Browser="RockMelt"
+Version="0.13"
+MinorVer=13
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.13* Chrome/*Safari/*]
+Parent="RockMelt 0.13"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.14
+
+[RockMelt 0.14]
+Parent="DefaultProperties"
+Comment="RockMelt 0.14"
+Browser="RockMelt"
+Version="0.14"
+MinorVer=14
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.14* Chrome/*Safari/*]
+Parent="RockMelt 0.14"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.15
+
+[RockMelt 0.15]
+Parent="DefaultProperties"
+Comment="RockMelt 0.15"
+Browser="RockMelt"
+Version="0.15"
+MinorVer=15
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.15* Chrome/*Safari/*]
+Parent="RockMelt 0.15"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.16
+
+[RockMelt 0.16]
+Parent="DefaultProperties"
+Comment="RockMelt 0.16"
+Browser="RockMelt"
+Version="0.16"
+MinorVer=16
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.16* Chrome/*Safari/*]
+Parent="RockMelt 0.16"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt 0.17
+
+[RockMelt 0.17]
+Parent="DefaultProperties"
+Comment="RockMelt 0.17"
+Browser="RockMelt"
+Version="0.17"
+MinorVer=17
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) RockMelt/0.17* Chrome/*Safari/*]
+Parent="RockMelt 0.17"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron 0.2
+
+[Iron 0.2]
+Parent="DefaultProperties"
+Comment="Iron 0.2"
+Browser="Iron"
+Version="0.2"
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.2*Safari/*]
+Parent="Iron 0.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.2*Safari/*]
+Parent="Iron 0.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.2*Safari/*]
+Parent="Iron 0.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/0.2*Safari/*]
+Parent="Iron 0.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.1
+
+[Silk 3.1]
+Parent="DefaultProperties"
+Comment="Silk 3.1"
+Browser="Silk"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.1* Safari*]
+Parent="Silk 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.1* Safari*]
+Parent="Silk 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.1* Safari*]
+Parent="Silk 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.1* Safari*]
+Parent="Silk 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.1* Safari*]
+Parent="Silk 3.1"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 3.0
+
+[Silk 3.0]
+Parent="DefaultProperties"
+Comment="Silk 3.0"
+Browser="Silk"
+Version="3.0"
+MajorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.0* Safari*]
+Parent="Silk 3.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/3.0* Safari*]
+Parent="Silk 3.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.0* Safari*]
+Parent="Silk 3.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.0* Safari*]
+Parent="Silk 3.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/3.0* Safari*]
+Parent="Silk 3.0"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.9
+
+[Silk 2.9]
+Parent="DefaultProperties"
+Comment="Silk 2.9"
+Browser="Silk"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.9* Safari*]
+Parent="Silk 2.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.9* Safari*]
+Parent="Silk 2.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.9* Safari*]
+Parent="Silk 2.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.9* Safari*]
+Parent="Silk 2.9"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.9* Safari*]
+Parent="Silk 2.9"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.8
+
+[Silk 2.8]
+Parent="DefaultProperties"
+Comment="Silk 2.8"
+Browser="Silk"
+Version="2.8"
+MajorVer=2
+MinorVer=8
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.8* Safari*]
+Parent="Silk 2.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.8* Safari*]
+Parent="Silk 2.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.8* Safari*]
+Parent="Silk 2.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.8* Safari*]
+Parent="Silk 2.8"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.8* Safari*]
+Parent="Silk 2.8"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.7
+
+[Silk 2.7]
+Parent="DefaultProperties"
+Comment="Silk 2.7"
+Browser="Silk"
+Version="2.7"
+MajorVer=2
+MinorVer=7
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.7* Safari*]
+Parent="Silk 2.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.7* Safari*]
+Parent="Silk 2.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.7* Safari*]
+Parent="Silk 2.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.7* Safari*]
+Parent="Silk 2.7"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.7* Safari*]
+Parent="Silk 2.7"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.6
+
+[Silk 2.6]
+Parent="DefaultProperties"
+Comment="Silk 2.6"
+Browser="Silk"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.6* Safari*]
+Parent="Silk 2.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.6* Safari*]
+Parent="Silk 2.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.6* Safari*]
+Parent="Silk 2.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.6* Safari*]
+Parent="Silk 2.6"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.6* Safari*]
+Parent="Silk 2.6"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.5
+
+[Silk 2.5]
+Parent="DefaultProperties"
+Comment="Silk 2.5"
+Browser="Silk"
+Version="2.5"
+MajorVer=2
+MinorVer=5
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.5* Safari*]
+Parent="Silk 2.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.5* Safari*]
+Parent="Silk 2.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.5* Safari*]
+Parent="Silk 2.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.5* Safari*]
+Parent="Silk 2.5"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.5* Safari*]
+Parent="Silk 2.5"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.4
+
+[Silk 2.4]
+Parent="DefaultProperties"
+Comment="Silk 2.4"
+Browser="Silk"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.4* Safari*]
+Parent="Silk 2.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.4* Safari*]
+Parent="Silk 2.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.4* Safari*]
+Parent="Silk 2.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.4* Safari*]
+Parent="Silk 2.4"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.4* Safari*]
+Parent="Silk 2.4"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.3
+
+[Silk 2.3]
+Parent="DefaultProperties"
+Comment="Silk 2.3"
+Browser="Silk"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.3* Safari*]
+Parent="Silk 2.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.3* Safari*]
+Parent="Silk 2.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.3* Safari*]
+Parent="Silk 2.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.3* Safari*]
+Parent="Silk 2.3"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.3* Safari*]
+Parent="Silk 2.3"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.2
+
+[Silk 2.2]
+Parent="DefaultProperties"
+Comment="Silk 2.2"
+Browser="Silk"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.2* Safari*]
+Parent="Silk 2.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.2* Safari*]
+Parent="Silk 2.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.2* Safari*]
+Parent="Silk 2.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.2* Safari*]
+Parent="Silk 2.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.2* Safari*]
+Parent="Silk 2.2"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.1
+
+[Silk 2.1]
+Parent="DefaultProperties"
+Comment="Silk 2.1"
+Browser="Silk"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.1* Safari*]
+Parent="Silk 2.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.1* Safari*]
+Parent="Silk 2.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.1* Safari*]
+Parent="Silk 2.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.1* Safari*]
+Parent="Silk 2.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.1* Safari*]
+Parent="Silk 2.1"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 2.0
+
+[Silk 2.0]
+Parent="DefaultProperties"
+Comment="Silk 2.0"
+Browser="Silk"
+Version="2.0"
+MajorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.0* Safari*]
+Parent="Silk 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Silk/2.0* Safari*]
+Parent="Silk 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFOT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.0* Safari*]
+Parent="Silk 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.0* Safari*]
+Parent="Silk 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Linux; U; *; KFJWI Build/*) AppleWebKit/* (KHTML,*like Gecko*) Silk/2.0* Safari*]
+Parent="Silk 2.0"
+Platform_Version="4.0"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot 1.0
+
+[Googlebot 1.0]
+Parent="DefaultProperties"
+Comment="Googlebot 1.0"
+Browser="Google Bot"
+Version="1.0"
+MajorVer=1
+Crawler="true"
+
+[Google/1.0* CFNetwork/* *Darwin*]
+Parent="Googlebot 1.0"
+Platform="Darwin"
+
+[GoogleBot/1.0*]
+Parent="Googlebot 1.0"
+
+[*Googlebot/1.0*]
+Parent="Googlebot 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; RockMelt
+
+[Rockmelt]
+Parent="DefaultProperties"
+Comment="RockMelt"
+Browser="RockMelt"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) RockMelt/* Chrome/* Safari/*]
+Parent="Rockmelt"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Iron Generic
+
+[Iron Generic]
+Parent="DefaultProperties"
+Comment="Iron Generic"
+Browser="Iron"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Iron/*Safari/*]
+Parent="Iron Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IE 12.0
+
+[IE 12.0]
+Parent="DefaultProperties"
+Comment="IE 12.0"
+Browser="IE"
+Version="12.0"
+MajorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+JavaApplets="true"
+ActiveXControls="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Edge/12.0*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Edge/12.0*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Safari/* Edge/12.0*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*Trident/8.0; rv:550) AppleWebKit/* (KHTML, like Gecko) Version/7.0 Safari/*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*Trident/8.0; rv:550) AppleWebKit/* (KHTML, like Gecko) Version/7.0 Safari/*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*Trident/8.0; rv:550) AppleWebKit/* (KHTML, like Gecko) Version/7.0 Safari/*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*Trident/8.0*rv:12.0*)*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*Trident/8.0*rv:12.0*)*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*Trident/8.0*rv:12.0*)*]
+Parent="IE 12.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Silk 1.0
+
+[Silk 1.0]
+Parent="DefaultProperties"
+Comment="Silk 1.0"
+Browser="Silk"
+Version="1.0"
+MajorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (*Mac OS X 10*Silk/1.*) AppleWebKit/* (KHTML, like Gecko) Version/5.0 Safari*]
+Parent="Silk 1.0"
+
+[Mozilla/5.0 (Linux*Android*Silk/1.*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 Mobile Safari*]
+Parent="Silk 1.0"
+
+[Mozilla/5.0 (*Mac OS X 10*Silk/1.*) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0 Safari*]
+Parent="Silk 1.0"
+
+[Mozilla/5.0 (Linux*Android*Silk/1.*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Silk 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot 2.0
+
+[Googlebot 2.0]
+Parent="DefaultProperties"
+Comment="Googlebot 2.0"
+Browser="Google Bot"
+Version="2.0"
+MajorVer=2
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Googlebot/2.0*]
+Parent="Googlebot 2.0"
+
+[Mozilla/5.0 (Windows; U*Gecko/* Googlebot?2.0*]
+Parent="Googlebot 2.0"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Googlebot?2.0*]
+Parent="Googlebot 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[GoogleBot/2.0*]
+Parent="Googlebot 2.0"
+
+[*Googlebot/2.0*]
+Parent="Googlebot 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.2
+
+[Chrome 0.2]
+Parent="DefaultProperties"
+Comment="Chrome 0.2"
+Browser="Chrome"
+Version="0.2"
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*Safari/*]
+Parent="Chrome 0.2"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*Safari/*]
+Parent="Chrome 0.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*Safari/*]
+Parent="Chrome 0.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*Safari/*]
+Parent="Chrome 0.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*Safari/*]
+Parent="Chrome 0.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*]
+Parent="Chrome 0.2"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*]
+Parent="Chrome 0.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*]
+Parent="Chrome 0.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*]
+Parent="Chrome 0.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.2*]
+Parent="Chrome 0.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.3
+
+[Chrome 0.3]
+Parent="DefaultProperties"
+Comment="Chrome 0.3"
+Browser="Chrome"
+Version="0.3"
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*Safari/*]
+Parent="Chrome 0.3"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*Safari/*]
+Parent="Chrome 0.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*Safari/*]
+Parent="Chrome 0.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*Safari/*]
+Parent="Chrome 0.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*Safari/*]
+Parent="Chrome 0.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*]
+Parent="Chrome 0.3"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*]
+Parent="Chrome 0.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*]
+Parent="Chrome 0.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*]
+Parent="Chrome 0.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.3*]
+Parent="Chrome 0.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.4
+
+[Chrome 0.4]
+Parent="DefaultProperties"
+Comment="Chrome 0.4"
+Browser="Chrome"
+Version="0.4"
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*Safari/*]
+Parent="Chrome 0.4"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*Safari/*]
+Parent="Chrome 0.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*Safari/*]
+Parent="Chrome 0.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*Safari/*]
+Parent="Chrome 0.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*Safari/*]
+Parent="Chrome 0.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*]
+Parent="Chrome 0.4"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*]
+Parent="Chrome 0.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*]
+Parent="Chrome 0.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*]
+Parent="Chrome 0.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.4*]
+Parent="Chrome 0.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 0.5
+
+[Chrome 0.5]
+Parent="DefaultProperties"
+Comment="Chrome 0.5"
+Browser="Chrome"
+Version="0.5"
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*Safari/*]
+Parent="Chrome 0.5"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*Safari/*]
+Parent="Chrome 0.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*Safari/*]
+Parent="Chrome 0.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*Safari/*]
+Parent="Chrome 0.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*Safari/*]
+Parent="Chrome 0.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*]
+Parent="Chrome 0.5"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*]
+Parent="Chrome 0.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*]
+Parent="Chrome 0.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*]
+Parent="Chrome 0.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/0.5*]
+Parent="Chrome 0.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot 2.1
+
+[Googlebot 2.1]
+Parent="DefaultProperties"
+Comment="Googlebot 2.1"
+Browser="Google Bot"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Crawler="true"
+
+[Googlebot v2.1*]
+Parent="Googlebot 2.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* (compatible; Googlebot/2.1*]
+Parent="Googlebot 2.1"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0 (compatible; Googlebot/2.1*]
+Parent="Googlebot 2.1"
+
+[Mozilla/5.0 (Windows; U*Gecko/* Googlebot?2.1*]
+Parent="Googlebot 2.1"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Googlebot?2.1*]
+Parent="Googlebot 2.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) Gecko/* Googlebot?2.1*]
+Parent="Googlebot 2.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) Gecko/* Googlebot?2.1*]
+Parent="Googlebot 2.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[GoogleBot/2.1*]
+Parent="Googlebot 2.1"
+
+[*Googlebot/2.1*]
+Parent="Googlebot 2.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 1.0
+
+[Chrome 1.0]
+Parent="DefaultProperties"
+Comment="Chrome 1.0"
+Browser="Chrome"
+Version="1.0"
+MajorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*Safari/*]
+Parent="Chrome 1.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/1.*]
+Parent="Chrome 1.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 2.0
+
+[Chrome 2.0]
+Parent="DefaultProperties"
+Comment="Chrome 2.0"
+Browser="Chrome"
+Version="2.0"
+MajorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*Safari/*]
+Parent="Chrome 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/2.*]
+Parent="Chrome 2.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 3.0
+
+[Chrome 3.0]
+Parent="DefaultProperties"
+Comment="Chrome 3.0"
+Browser="Chrome"
+Version="3.0"
+MajorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*Safari/*]
+Parent="Chrome 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/3.*]
+Parent="Chrome 3.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot 2.2
+
+[Googlebot 2.2]
+Parent="DefaultProperties"
+Comment="Googlebot 2.2"
+Browser="Google Bot"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Googlebot/2.2*]
+Parent="Googlebot 2.2"
+
+[Mozilla/5.0 (Windows; U*Gecko/* Googlebot/2.2*]
+Parent="Googlebot 2.2"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (Windows; U*Gecko/* Googlebot?2.2*]
+Parent="Googlebot 2.2"
+Platform="Win32"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) Gecko/* Googlebot?2.2*]
+Parent="Googlebot 2.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[GoogleBot/2.2*]
+Parent="Googlebot 2.2"
+
+[*Googlebot/2.2*]
+Parent="Googlebot 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 4.0
+
+[Chrome 4.0]
+Parent="DefaultProperties"
+Comment="Chrome 4.0"
+Browser="Chrome"
+Version="4.0"
+MajorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*Safari/*]
+Parent="Chrome 4.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/4.*]
+Parent="Chrome 4.0"
+Platform="FreeBSD"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot
+
+[Googlebot]
+Parent="DefaultProperties"
+Comment="Googlebot"
+Browser="Google Bot"
+Crawler="true"
+
+[Google/0.8* CFNetwork/* Darwin/*]
+Parent="Googlebot"
+Version="0.8"
+MinorVer=8
+Platform="Darwin"
+
+[Google/0.9* CFNetwork/* Darwin/*]
+Parent="Googlebot"
+Version="0.9"
+MinorVer=9
+Platform="Darwin"
+
+[Google/* CFNetwork/* *Darwin*]
+Parent="Googlebot"
+Platform="Darwin"
+
+[Googlebot/Test*]
+Parent="Googlebot"
+
+[GoogleBot/*]
+Parent="Googlebot"
+
+[googlebot-urlconsole]
+Parent="Googlebot"
+Browser="googlebot-urlconsole"
+
+[Googlebot-Image*]
+Parent="Googlebot"
+Browser="Googlebot-Image"
+
+[Googlebot-News*]
+Parent="Googlebot"
+Browser="Googlebot-News"
+
+[Googlebot-Video*]
+Parent="Googlebot"
+Browser="Googlebot-Video"
+
+[googlebot*]
+Parent="Googlebot"
+
+[GOOG*]
+Parent="Googlebot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 5.0
+
+[Chrome 5.0]
+Parent="DefaultProperties"
+Comment="Chrome 5.0"
+Browser="Chrome"
+Version="5.0"
+MajorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*Safari/*]
+Parent="Chrome 5.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/5.*]
+Parent="Chrome 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 6.0
+
+[Chrome 6.0]
+Parent="DefaultProperties"
+Comment="Chrome 6.0"
+Browser="Chrome"
+Version="6.0"
+MajorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*Safari/*]
+Parent="Chrome 6.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/6.*]
+Parent="Chrome 6.0"
+Platform="ChromeOS"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 7.0
+
+[Chrome 7.0]
+Parent="DefaultProperties"
+Comment="Chrome 7.0"
+Browser="Chrome"
+Version="7.0"
+MajorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*Safari/*]
+Parent="Chrome 7.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/7.*]
+Parent="Chrome 7.0"
+Platform="ChromeOS"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 8.0
+
+[Chrome 8.0]
+Parent="DefaultProperties"
+Comment="Chrome 8.0"
+Browser="Chrome"
+Version="8.0"
+MajorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*Safari/*]
+Parent="Chrome 8.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/8.*]
+Parent="Chrome 8.0"
+Platform="ChromeOS"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 9.0
+
+[Chrome 9.0]
+Parent="DefaultProperties"
+Comment="Chrome 9.0"
+Browser="Chrome"
+Version="9.0"
+MajorVer=9
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*Safari/*]
+Parent="Chrome 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*FreeBSD*i386*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/9.*]
+Parent="Chrome 9.0"
+Platform="ChromeOS"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 10.0
+
+[Chrome 10.0]
+Parent="DefaultProperties"
+Comment="Chrome 10.0"
+Browser="Chrome"
+Version="10.0"
+MajorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/10.*Safari/*]
+Parent="Chrome 10.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 11.0
+
+[Chrome 11.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 11.0"
+Browser="Chrome"
+Version="11.0"
+MajorVer=11
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (X11; Linux*; HTC/Sensation/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (X11; Linux x86_64*; HTC/Sensation/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT *) AppleWebKit/* (KHTML, like Gecko)*CrMo/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko)*CrMo/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*GoogleTV 3.2*NSZ-GS7/GX70 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform="Android for GoogleTV"
+Platform_Version="3.2"
+Win32="false"
+isMobileDevice="false"
+
+[Tablet-PC-4 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[DINO762 Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/11.*Safari/*]
+Parent="Chrome 11.0 for Android"
+Win32="false"
+
+[Chrome 11.0]
+Parent="DefaultProperties"
+Comment="Chrome 11.0"
+Browser="Chrome"
+Version="11.0"
+MajorVer=11
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Safari/*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Chrome anonymized by*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/11.*Anonymisiert durch*]
+Parent="Chrome 11.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SmartViera 1.5
+
+[SmartViera 1.5]
+Parent="DefaultProperties"
+Comment="SmartViera 1.5"
+Browser="SmartViera"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Platform="FreeBSD"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+CssVersion=2
+
+[Mozilla/5.0 (*FreeBSD*; Viera; *) AppleWebKit/* (KHTML, like Gecko) Viera/1.5* Chrome/*Safari/*]
+Parent="SmartViera 1.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SmartViera 3.1
+
+[SmartViera 3.1]
+Parent="DefaultProperties"
+Comment="SmartViera 3.1"
+Browser="SmartViera"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="FreeBSD"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+CssVersion=2
+
+[Mozilla/5.0 (*FreeBSD*; Viera; *) AppleWebKit/* (KHTML, like Gecko) Viera/3.1* Chrome/*Safari/*]
+Parent="SmartViera 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 12.0
+
+[Chrome 12.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 12.0"
+Browser="Chrome"
+Version="12.0"
+MajorVer=12
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT *) AppleWebKit/* (KHTML, like Gecko)*CrMo/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/12.*Safari/*]
+Parent="Chrome 12.0 for Android"
+Win32="false"
+
+[Chrome 12.0]
+Parent="DefaultProperties"
+Comment="Chrome 12.0"
+Browser="Chrome"
+Version="12.0"
+MajorVer=12
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Safari/*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Chrome anonymized by*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/12.*Anonymisiert durch*]
+Parent="Chrome 12.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 13.0
+
+[Chrome 13.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 13.0"
+Browser="Chrome"
+Version="13.0"
+MajorVer=13
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (X11; Linux*; HTC/Sensation/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (X11; Linux x86_64*; HTC/Sensation/*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT *) AppleWebKit/* (KHTML, like Gecko)*CrMo/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko)*CrMo/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/13.*Safari/*]
+Parent="Chrome 13.0 for Android"
+Win32="false"
+
+[Chrome 13.0]
+Parent="DefaultProperties"
+Comment="Chrome 13.0"
+Browser="Chrome"
+Version="13.0"
+MajorVer=13
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Safari/*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Chrome anonymized by*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/13.*Anonymisiert durch*]
+Parent="Chrome 13.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 14.0
+
+[Chrome 14.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 14.0"
+Browser="Chrome"
+Version="14.0"
+MajorVer=14
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/14.*Safari/*]
+Parent="Chrome 14.0 for Android"
+Win32="false"
+
+[Chrome 14.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 14.0"
+Browser="Chrome"
+Version="14.0"
+MajorVer=14
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/14.*Safari/*]
+Parent="Chrome 14.0 for iOS"
+Win32="false"
+
+[Chrome 14.0]
+Parent="DefaultProperties"
+Comment="Chrome 14.0"
+Browser="Chrome"
+Version="14.0"
+MajorVer=14
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Safari/*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Chrome anonymized by*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/14.*Anonymisiert durch*]
+Parent="Chrome 14.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 15.0
+
+[Chrome 15.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 15.0"
+Browser="Chrome"
+Version="15.0"
+MajorVer=15
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/15.*Safari/*]
+Parent="Chrome 15.0 for Android"
+Win32="false"
+
+[Chrome 15.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 15.0"
+Browser="Chrome"
+Version="15.0"
+MajorVer=15
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/15.*Safari/*]
+Parent="Chrome 15.0 for iOS"
+Win32="false"
+
+[Chrome 15.0]
+Parent="DefaultProperties"
+Comment="Chrome 15.0"
+Browser="Chrome"
+Version="15.0"
+MajorVer=15
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Safari/*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Chrome anonymized by*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/15.*Anonymisiert durch*]
+Parent="Chrome 15.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 16.0
+
+[Chrome 16.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 16.0"
+Browser="Chrome"
+Version="16.0"
+MajorVer=16
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT *) AppleWebKit/* (KHTML, like Gecko)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/16.*Safari/*]
+Parent="Chrome 16.0 for Android"
+Win32="false"
+
+[Chrome 16.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 16.0"
+Browser="Chrome"
+Version="16.0"
+MajorVer=16
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/16.*Safari/*]
+Parent="Chrome 16.0 for iOS"
+Win32="false"
+
+[Chrome 16.0]
+Parent="DefaultProperties"
+Comment="Chrome 16.0"
+Browser="Chrome"
+Version="16.0"
+MajorVer=16
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Safari/*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Chrome anonymized by*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/16.*Anonymisiert durch*]
+Parent="Chrome 16.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 17.0
+
+[Chrome 17.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 17.0"
+Browser="Chrome"
+Version="17.0"
+MajorVer=17
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/17.*Safari/*]
+Parent="Chrome 17.0 for Android"
+Win32="false"
+
+[Chrome 17.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 17.0"
+Browser="Chrome"
+Version="17.0"
+MajorVer=17
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/17.*Safari/*]
+Parent="Chrome 17.0 for iOS"
+Win32="false"
+
+[Chrome 17.0]
+Parent="DefaultProperties"
+Comment="Chrome 17.0"
+Browser="Chrome"
+Version="17.0"
+MajorVer=17
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Safari/*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Chrome anonymized by*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/17.*Anonymisiert durch*]
+Parent="Chrome 17.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 18.0
+
+[Chrome 18.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 18.0"
+Browser="Chrome"
+Version="18.0"
+MajorVer=18
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C1505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C1505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C1505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C1505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST26i* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME172V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP5670C_DUO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SmartTabII10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E460 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/18.*Safari/*]
+Parent="Chrome 18.0 for Android"
+Win32="false"
+
+[Chrome 18.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 18.0"
+Browser="Chrome"
+Version="18.0"
+MajorVer=18
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/18.*Safari/*]
+Parent="Chrome 18.0 for iOS"
+Win32="false"
+
+[Chrome 18.0]
+Parent="DefaultProperties"
+Comment="Chrome 18.0"
+Browser="Chrome"
+Version="18.0"
+MajorVer=18
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/18.*Safari/*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Chrome anonymized by*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/18.*Anonymisiert durch*]
+Parent="Chrome 18.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 19.0
+
+[Chrome 19.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 19.0"
+Browser="Chrome"
+Version="19.0"
+MajorVer=19
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/19.*Safari/*]
+Parent="Chrome 19.0 for Android"
+Win32="false"
+
+[Chrome 19.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 19.0"
+Browser="Chrome"
+Version="19.0"
+MajorVer=19
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*)*AppleWebKit/*(KHTML, like Gecko)*CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/19.*Safari/*]
+Parent="Chrome 19.0 for iOS"
+Win32="false"
+
+[Chrome 19.0]
+Parent="DefaultProperties"
+Comment="Chrome 19.0"
+Browser="Chrome"
+Version="19.0"
+MajorVer=19
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Safari/*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Chrome anonymized by*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/19.*Anonymisiert durch*]
+Parent="Chrome 19.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 20.0
+
+[Chrome 20.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 20.0"
+Browser="Chrome"
+Version="20.0"
+MajorVer=20
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/20.*Safari/*]
+Parent="Chrome 20.0 for Android"
+Win32="false"
+
+[Chrome 20.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 20.0"
+Browser="Chrome"
+Version="20.0"
+MajorVer=20
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/20.*Safari/*]
+Parent="Chrome 20.0 for iOS"
+Win32="false"
+
+[Chrome 20.0]
+Parent="DefaultProperties"
+Comment="Chrome 20.0"
+Browser="Chrome"
+Version="20.0"
+MajorVer=20
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Safari/*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Chrome anonymized by*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/20.*Anonymisiert durch*]
+Parent="Chrome 20.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 21.0
+
+[Chrome 21.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 21.0"
+Browser="Chrome"
+Version="21.0"
+MajorVer=21
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/21.*Safari/*]
+Parent="Chrome 21.0 for Android"
+Win32="false"
+
+[Chrome 21.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 21.0"
+Browser="Chrome"
+Version="21.0"
+MajorVer=21
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/21.*Safari/*]
+Parent="Chrome 21.0 for iOS"
+Win32="false"
+
+[Chrome 21.0]
+Parent="DefaultProperties"
+Comment="Chrome 21.0"
+Browser="Chrome"
+Version="21.0"
+MajorVer=21
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Safari/*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Chrome anonymized by*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/21.*Anonymisiert durch*]
+Parent="Chrome 21.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 22.0
+
+[Chrome 22.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 22.0"
+Browser="Chrome"
+Version="22.0"
+MajorVer=22
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/22.*Safari/*]
+Parent="Chrome 22.0 for Android"
+Win32="false"
+
+[Chrome 22.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 22.0"
+Browser="Chrome"
+Version="22.0"
+MajorVer=22
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/22.*Safari/*]
+Parent="Chrome 22.0 for iOS"
+Win32="false"
+
+[Chrome 22.0]
+Parent="DefaultProperties"
+Comment="Chrome 22.0"
+Browser="Chrome"
+Version="22.0"
+MajorVer=22
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Safari/*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Chrome anonymized by*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/22.*Anonymisiert durch*]
+Parent="Chrome 22.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 23.0
+
+[Chrome 23.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 23.0"
+Browser="Chrome"
+Version="23.0"
+MajorVer=23
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/23.*Safari/*]
+Parent="Chrome 23.0 for Android"
+Win32="false"
+
+[Chrome 23.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 23.0"
+Browser="Chrome"
+Version="23.0"
+MajorVer=23
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/23.*Safari/*]
+Parent="Chrome 23.0 for iOS"
+Win32="false"
+
+[Chrome 23.0]
+Parent="DefaultProperties"
+Comment="Chrome 23.0"
+Browser="Chrome"
+Version="23.0"
+MajorVer=23
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Safari/*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Chrome anonymized by*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/23.*Anonymisiert durch*]
+Parent="Chrome 23.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 24.0
+
+[Chrome 24.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 24.0"
+Browser="Chrome"
+Version="24.0"
+MajorVer=24
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/24.*Safari/*]
+Parent="Chrome 24.0 for Android"
+Win32="false"
+
+[Chrome 24.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 24.0"
+Browser="Chrome"
+Version="24.0"
+MajorVer=24
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/24.*Safari/*]
+Parent="Chrome 24.0 for iOS"
+Win32="false"
+
+[Chrome 24.0]
+Parent="DefaultProperties"
+Comment="Chrome 24.0"
+Browser="Chrome"
+Version="24.0"
+MajorVer=24
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Safari/*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Chrome anonymized by*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/24.*Anonymisiert durch*]
+Parent="Chrome 24.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 25.0
+
+[Chrome 25.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 25.0"
+Browser="Chrome"
+Version="25.0"
+MajorVer=25
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_785 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1014 IPS X4 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/25.*Safari/*]
+Parent="Chrome 25.0 for Android"
+Win32="false"
+
+[Chrome 25.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 25.0"
+Browser="Chrome"
+Version="25.0"
+MajorVer=25
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/25.*Safari/*]
+Parent="Chrome 25.0 for iOS"
+Win32="false"
+
+[Chrome 25.0]
+Parent="DefaultProperties"
+Comment="Chrome 25.0"
+Browser="Chrome"
+Version="25.0"
+MajorVer=25
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Safari/*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Chrome anonymized by*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/25.*Anonymisiert durch*]
+Parent="Chrome 25.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 26.0
+
+[Chrome 26.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 26.0"
+Browser="Chrome"
+Version="26.0"
+MajorVer=26
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7480D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5785C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/26.*Safari/*]
+Parent="Chrome 26.0 for Android"
+Win32="false"
+
+[Chrome 26.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 26.0"
+Browser="Chrome"
+Version="26.0"
+MajorVer=26
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/26.*Safari/*]
+Parent="Chrome 26.0 for iOS"
+Win32="false"
+
+[Chrome 26.0]
+Parent="DefaultProperties"
+Comment="Chrome 26.0"
+Browser="Chrome"
+Version="26.0"
+MajorVer=26
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Safari/*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Chrome anonymized by*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/26.*Anonymisiert durch*]
+Parent="Chrome 26.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 27.0
+
+[Chrome 27.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 27.0"
+Browser="Chrome"
+Version="27.0"
+MajorVer=27
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/27.*Safari/*]
+Parent="Chrome 27.0 for Android"
+Win32="false"
+
+[Chrome 27.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 27.0"
+Browser="Chrome"
+Version="27.0"
+MajorVer=27
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/27.*Safari/*]
+Parent="Chrome 27.0 for iOS"
+Win32="false"
+
+[Chrome 27.0]
+Parent="DefaultProperties"
+Comment="Chrome 27.0"
+Browser="Chrome"
+Version="27.0"
+MajorVer=27
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Safari/*]
+Parent="Chrome 27.0"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*]
+Parent="Chrome 27.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Chrome anonymized by*]
+Parent="Chrome 27.0"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*) AppleWebKit/* (KHTML, like Gecko*) Chrome/27.*Anonymisiert durch*]
+Parent="Chrome 27.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 28.0
+
+[Chrome 28.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 28.0"
+Browser="Chrome"
+Version="28.0"
+MajorVer=28
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/28.*Safari/*]
+Parent="Chrome 28.0 for Android"
+Win32="false"
+
+[Chrome 28.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 28.0"
+Browser="Chrome"
+Version="28.0"
+MajorVer=28
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/28.*Safari/*]
+Parent="Chrome 28.0 for iOS"
+Win32="false"
+
+[Chrome 28.0]
+Parent="DefaultProperties"
+Comment="Chrome 28.0"
+Browser="Chrome"
+Version="28.0"
+MajorVer=28
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Safari/*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Chrome anonymized by*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/28.*Anonymisiert durch*]
+Parent="Chrome 28.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 29.0
+
+[Chrome 29.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 29.0"
+Browser="Chrome"
+Version="29.0"
+MajorVer=29
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/29.*Safari/*]
+Parent="Chrome 29.0 for Android"
+Win32="false"
+
+[Chrome 29.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 29.0"
+Browser="Chrome"
+Version="29.0"
+MajorVer=29
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/29.*Safari/*]
+Parent="Chrome 29.0 for iOS"
+Win32="false"
+
+[Chrome 29.0]
+Parent="DefaultProperties"
+Comment="Chrome 29.0"
+Browser="Chrome"
+Version="29.0"
+MajorVer=29
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Safari/*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Chrome anonymized by*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/29.*Anonymisiert durch*]
+Parent="Chrome 29.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 30.0
+
+[Chrome 30.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 30.0"
+Browser="Chrome"
+Version="30.0"
+MajorVer=30
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/30.*Safari/*]
+Parent="Chrome 30.0 for Android"
+Win32="false"
+
+[Chrome 30.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 30.0"
+Browser="Chrome"
+Version="30.0"
+MajorVer=30
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/30.*Safari/*]
+Parent="Chrome 30.0 for iOS"
+Win32="false"
+
+[Chrome 30.0]
+Parent="DefaultProperties"
+Comment="Chrome 30.0"
+Browser="Chrome"
+Version="30.0"
+MajorVer=30
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Safari/*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Chrome anonymized by*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/30.*Anonymisiert durch*]
+Parent="Chrome 30.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 31.0
+
+[Chrome 31.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 31.0"
+Browser="Chrome"
+Version="31.0"
+MajorVer=31
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/31.*Safari/*]
+Parent="Chrome 31.0 for Android"
+Win32="false"
+
+[Chrome 31.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 31.0"
+Browser="Chrome"
+Version="31.0"
+MajorVer=31
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/31.*Safari/*]
+Parent="Chrome 31.0 for iOS"
+Win32="false"
+
+[Chrome 31.0]
+Parent="DefaultProperties"
+Comment="Chrome 31.0"
+Browser="Chrome"
+Version="31.0"
+MajorVer=31
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Safari/*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Chrome anonymized by*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/31.*Anonymisiert durch*]
+Parent="Chrome 31.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 32.0
+
+[Chrome 32.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 32.0"
+Browser="Chrome"
+Version="32.0"
+MajorVer=32
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/32.*Safari/*]
+Parent="Chrome 32.0 for Android"
+Win32="false"
+
+[Chrome 32.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 32.0"
+Browser="Chrome"
+Version="32.0"
+MajorVer=32
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/32.*Safari/*]
+Parent="Chrome 32.0 for iOS"
+Win32="false"
+
+[Chrome 32.0]
+Parent="DefaultProperties"
+Comment="Chrome 32.0"
+Browser="Chrome"
+Version="32.0"
+MajorVer=32
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Safari/*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Chrome anonymized by*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/32.*Anonymisiert durch*]
+Parent="Chrome 32.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 33.0
+
+[Chrome 33.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 33.0"
+Browser="Chrome"
+Version="33.0"
+MajorVer=33
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/33.*Safari/*]
+Parent="Chrome 33.0 for Android"
+Win32="false"
+
+[Chrome 33.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 33.0"
+Browser="Chrome"
+Version="33.0"
+MajorVer=33
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/33.*Safari/*]
+Parent="Chrome 33.0 for iOS"
+Win32="false"
+
+[Chrome 33.0]
+Parent="DefaultProperties"
+Comment="Chrome 33.0"
+Browser="Chrome"
+Version="33.0"
+MajorVer=33
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Safari/*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Chrome anonymized by*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/33.*Anonymisiert durch*]
+Parent="Chrome 33.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 34.0
+
+[Chrome 34.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 34.0"
+Browser="Chrome"
+Version="34.0"
+MajorVer=34
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/34.*Safari/*]
+Parent="Chrome 34.0 for Android"
+Win32="false"
+
+[Chrome 34.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 34.0"
+Browser="Chrome"
+Version="34.0"
+MajorVer=34
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/34.*Safari/*]
+Parent="Chrome 34.0 for iOS"
+Win32="false"
+
+[Chrome 34.0]
+Parent="DefaultProperties"
+Comment="Chrome 34.0"
+Browser="Chrome"
+Version="34.0"
+MajorVer=34
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Safari/*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Chrome anonymized by*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/34.*Anonymisiert durch*]
+Parent="Chrome 34.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 35.0
+
+[Chrome 35.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 35.0"
+Browser="Chrome"
+Version="35.0"
+MajorVer=35
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/35.*Safari/*]
+Parent="Chrome 35.0 for Android"
+Win32="false"
+
+[Chrome 35.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 35.0"
+Browser="Chrome"
+Version="35.0"
+MajorVer=35
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/35.*Safari/*]
+Parent="Chrome 35.0 for iOS"
+Win32="false"
+
+[Chrome 35.0]
+Parent="DefaultProperties"
+Comment="Chrome 35.0"
+Browser="Chrome"
+Version="35.0"
+MajorVer=35
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Safari/*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Chrome anonymized by*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/35.*Anonymisiert durch*]
+Parent="Chrome 35.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 36.0
+
+[Chrome 36.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 36.0"
+Browser="Chrome"
+Version="36.0"
+MajorVer=36
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/36.*Safari/*]
+Parent="Chrome 36.0 for Android"
+Win32="false"
+
+[Chrome 36.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 36.0"
+Browser="Chrome"
+Version="36.0"
+MajorVer=36
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/36.*Safari/*]
+Parent="Chrome 36.0 for iOS"
+Win32="false"
+
+[Chrome 36.0]
+Parent="DefaultProperties"
+Comment="Chrome 36.0"
+Browser="Chrome"
+Version="36.0"
+MajorVer=36
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Safari/*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Chrome anonymized by*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/36.*Anonymisiert durch*]
+Parent="Chrome 36.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 37.0
+
+[Chrome 37.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 37.0"
+Browser="Chrome"
+Version="37.0"
+MajorVer=37
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/37.*Safari/*]
+Parent="Chrome 37.0 for Android"
+Win32="false"
+
+[Chrome 37.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 37.0"
+Browser="Chrome"
+Version="37.0"
+MajorVer=37
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/37.*Safari/*]
+Parent="Chrome 37.0 for iOS"
+Win32="false"
+
+[Chrome 37.0]
+Parent="DefaultProperties"
+Comment="Chrome 37.0"
+Browser="Chrome"
+Version="37.0"
+MajorVer=37
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Safari/*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Chrome anonymized by*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/37.*Anonymisiert durch*]
+Parent="Chrome 37.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 38.0
+
+[Chrome 38.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 38.0"
+Browser="Chrome"
+Version="38.0"
+MajorVer=38
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/38.*Safari/*]
+Parent="Chrome 38.0 for Android"
+Win32="false"
+
+[Chrome 38.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 38.0"
+Browser="Chrome"
+Version="38.0"
+MajorVer=38
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/38.*Safari/*]
+Parent="Chrome 38.0 for iOS"
+Win32="false"
+
+[Chrome 38.0]
+Parent="DefaultProperties"
+Comment="Chrome 38.0"
+Browser="Chrome"
+Version="38.0"
+MajorVer=38
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Safari/*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Chrome anonymized by*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/38.*Anonymisiert durch*]
+Parent="Chrome 38.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 39.0
+
+[Chrome 39.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 39.0"
+Browser="Chrome"
+Version="39.0"
+MajorVer=39
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/39.*Safari/*]
+Parent="Chrome 39.0 for Android"
+Win32="false"
+
+[Chrome 39.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 39.0"
+Browser="Chrome"
+Version="39.0"
+MajorVer=39
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/39.*Safari/*]
+Parent="Chrome 39.0 for iOS"
+Win32="false"
+
+[Chrome 39.0]
+Parent="DefaultProperties"
+Comment="Chrome 39.0"
+Browser="Chrome"
+Version="39.0"
+MajorVer=39
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Safari/*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Chrome anonymized by*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/39.*Anonymisiert durch*]
+Parent="Chrome 39.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 40.0
+
+[Chrome 40.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 40.0"
+Browser="Chrome"
+Version="40.0"
+MajorVer=40
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/40.*Safari/*]
+Parent="Chrome 40.0 for Android"
+Win32="false"
+
+[Chrome 40.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 40.0"
+Browser="Chrome"
+Version="40.0"
+MajorVer=40
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/40.*Safari/*]
+Parent="Chrome 40.0 for iOS"
+Win32="false"
+
+[Chrome 40.0]
+Parent="DefaultProperties"
+Comment="Chrome 40.0"
+Browser="Chrome"
+Version="40.0"
+MajorVer=40
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Safari/*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Chrome anonymized by*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/40.*Anonymisiert durch*]
+Parent="Chrome 40.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome 41.0
+
+[Chrome 41.0 for Android]
+Parent="DefaultProperties"
+Comment="Chrome 41.0"
+Browser="Chrome"
+Version="41.0"
+MajorVer=41
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*A200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A510 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*)*CrMo/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9300 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9305 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8013 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8020* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC Desire X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*One S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML, like Gecko)*CrMo/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P880 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_P9514 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_S9714 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT30p Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MD_LIFETAB_P9516 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LIFETAB_E10310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MZ601 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MZ604 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Sony Tablet S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT890 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT925 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Galaxy Nexus Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC6500LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC One Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 4 *) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G9 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ASUS Transformer Pad TF300TG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ASUS Transformer Pad TF700T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*AT200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cynus T1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*DROID RAZR HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9195* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9190* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT907 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I605 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505X* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+JavaApplets="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9505* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Desire SV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC EVO 3D X515m Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HUAWEI G510-* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabA2109A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E610 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P760 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ODYS-EVO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT12 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST23i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Transformer Prime TF201 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Transformer TF101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U9200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 7 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP321 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6602 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C5303 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT25i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGPT13 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC One X+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5200 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*cm_tenderloin Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC6435LVW Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*IdeaTabS2110AF Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-E975* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P895* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT28h Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME302C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME371MG Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MI 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST21i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ZP900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*U30GT 2 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ALCATEL ONE TOUCH 6033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ARCHOS 101G10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Archos 80 Xenon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*BASE_Lutea_3 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9205 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P3113 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-P5210* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P7511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7562 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S7710 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad 10 LINK Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PadFone Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*TouchPad Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Transformer TF101G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME173X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*U8825* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*X10.Dual+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XOOM 2 ME Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1032 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1033 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1080 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*dL1 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P600 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P605* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N9005* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900V Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N910V 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900V* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900A* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LGLS740 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VIVO IV Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*VS980 4G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G900T* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N900A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A1-810 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9295* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9506* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SPH-L720 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SCH-I545 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGH-M919 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530NU Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T530 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*A3000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-N7505 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*C6903 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?5.0*Nexus 5 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9515* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6503 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T520 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP512 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One_M8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*831C Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D2306 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*XT1058 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0(*Linux*Android?4.4*Fly IQ4409 Quad Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T535 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5503 Build/*) AppleWebKit/*(KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7280C3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T230 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T800 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T525 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D6603 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10316 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*HTC?One?mini* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8080-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*MediaPad T1 8.0 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*TQ700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ARIES_101 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*INSIGNIA_785_PRO Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*AT10-A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T310 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B8000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo B6000-F*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-811 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 1001 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FreeTAB 7001 HD IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*FreeTAB 8001 IPS X2 3G+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T311 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T235 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T210 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT7077_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T805 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 3730 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 7 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T211 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 3830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Venue 8 HSPA+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A3500-FL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*FunTab 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V500 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P310X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P5220* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo S5000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMT5587_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ALCATEL ONE TOUCH P320X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP511 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T700 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP521 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A7600-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T325 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N5110 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P905 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*Lenovo A5500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T705 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP5101C_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo S6000L-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME302KL Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Solution 10II Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ME301T Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T111 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3277_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance 8 3G* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MID802 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*PMT3287_3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Lenovo A3500-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K01A Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*PMT3377_Wi Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B1-730HD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-G800F* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-I9301I Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LIFETAB_S1033X Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaTab S6000-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*D5803 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LIFETAB_E10320 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo A5500-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-P900 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PMP7079D3G_QUAD Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A7600-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PI3210G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*B8080-F Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-V490 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SM-T2105 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*A3300-H Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SGP312 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*OV-Quattor 10+ Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SAMURAI10(QuadCore) Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM-T315* Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Archos 101 Neon Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Kiano Elegance by Zanetti Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*OV-SteelCore-B Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9000 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 7800 IPS IC Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FreeTAB 9702 HD X4 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A3-A10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Ignis 8 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*NTT 611 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Solution 7III Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*K012 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*myTAB Mini 3G Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*PentagramTAB7.6 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*IdeaPadA10 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*A1-830 Build/*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Digma iDsD7 3G Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*SM - T531 Build/*) AppleWebKit/*(KHTML,*like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*CrMo/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*CrMo/41.*Safari/*]
+Parent="Chrome 41.0 for Android"
+Win32="false"
+
+[Chrome 41.0 for iOS]
+Parent="DefaultProperties"
+Comment="Chrome 41.0"
+Browser="Chrome"
+Version="41.0"
+MajorVer=41
+Platform="iOS"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (iPod*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 4_3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 5_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="5.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 6* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="6.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 7* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="7.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.0"
+Win32="false"
+
+[Mozilla/5.0 (*CPU OS 8_1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Platform_Version="8.1"
+Win32="false"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/41.*Safari/*]
+Parent="Chrome 41.0 for iOS"
+Win32="false"
+
+[Chrome 41.0]
+Parent="DefaultProperties"
+Comment="Chrome 41.0"
+Browser="Chrome"
+Version="41.0"
+MajorVer=41
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*FreeBSD*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="FreeBSD"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Safari/*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS armv*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Chrome anonymized by*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+[Mozilla/5.0 (*Windows 95*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win95"
+Platform_Version=95
+
+[Mozilla/5.0 (*Windows 98*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win98"
+Platform_Version=98
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinNT"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/41.*Anonymisiert durch*]
+Parent="Chrome 41.0"
+Platform="Win10"
+Platform_Version="6.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Chrome Generic
+
+[Chrome Generic for Android]
+Parent="DefaultProperties"
+Comment="Chrome 0.0"
+Browser="Chrome"
+Platform="Android"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="1.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="1.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="1.5"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="1.6"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="2.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="2.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="2.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="2.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="3.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="3.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="3.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="4.0"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="4.1"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="4.2"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="4.3"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Platform_Version="4.4"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic for Android"
+Win32="false"
+
+[Chrome Generic for iOS]
+Parent="DefaultProperties"
+Comment="Chrome Generic"
+Browser="Chrome"
+Platform="iOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+isTablet="true"
+
+[Mozilla/5.0 (iPad*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+isTablet="true"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (iPhone*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Mozilla/5.0 (iPhone*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Mozilla/5.0 (iPhone*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Mozilla/5.0 (*CPU like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Mozilla/5.0 (*CPU*OS*like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *CriOS/*Safari/*]
+Parent="Chrome Generic for iOS"
+
+[Chrome Generic]
+Parent="DefaultProperties"
+Comment="Chrome Generic"
+Browser="Chrome"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=1
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/* Large Screen Safari/* GoogleTV/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*CrOS x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux x86*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Safari/*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinNT"
+Platform_Version="4.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Chrome anonymized by*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 4.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinNT"
+Platform_Version="4.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) Chrome/*Anonymisiert durch*]
+Parent="Chrome Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML,*like Gecko*) Chrome/*]
+Parent="Chrome Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Googlebot-Mobile 2.1]
+Parent="Googlebot-Mobile"
+Comment="Googlebot"
+Browser="Google Bot Mobile"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+isMobileDevice="true"
+Crawler="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* (compatible; Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* (compatible; Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[DoCoMo/1.0/N505i/c20/TB/W20H10 (compatible; Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+
+[DoCoMo/2.0 N905i(c100;TB;W24H16) (compatible; Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+
+[KDDI-CA34 UP.Browser/6.2*(GUI)MMP/2.0 (compatible; KDDI-Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+
+[SAMSUNG-SGH-E250/* UP.Browser/6.2* (compatible; Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+Platform="JAVA"
+
+[*Googlebot-Mobile/2.1*]
+Parent="Googlebot-Mobile 2.1"
+
+[Googlebot-Mobile 2.2]
+Parent="Googlebot-Mobile"
+Comment="Googlebot"
+Browser="Google Bot Mobile"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+isMobileDevice="true"
+Crawler="true"
+
+[KDDI-CA34 UP.Browser/6.2*(GUI)MMP/2.0 (compatible; KDDI-Googlebot-Mobile/2.2*]
+Parent="Googlebot-Mobile 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.0
+
+[Qt 4.0 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.0"
+Browser="Qt"
+Version="4.0"
+MajorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Android"
+Platform="Android"
+
+[Qt 4.0 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.0"
+Browser="Qt"
+Version="4.0"
+MajorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.0]
+Parent="DefaultProperties"
+Comment="Qt 4.0"
+Browser="Qt"
+Version="4.0"
+MajorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*Safari/*]
+Parent="Qt 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.0*]
+Parent="Qt 4.0"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.1
+
+[Qt 4.1 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.1"
+Browser="Qt"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Android"
+Platform="Android"
+
+[Qt 4.1 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.1"
+Browser="Qt"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.1]
+Parent="DefaultProperties"
+Comment="Qt 4.1"
+Browser="Qt"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*Safari/*]
+Parent="Qt 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.1*]
+Parent="Qt 4.1"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.2
+
+[Qt 4.2 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.2"
+Browser="Qt"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Android"
+Platform="Android"
+
+[Qt 4.2 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.2"
+Browser="Qt"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.2]
+Parent="DefaultProperties"
+Comment="Qt 4.2"
+Browser="Qt"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*Safari/*]
+Parent="Qt 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.2*]
+Parent="Qt 4.2"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.3
+
+[Qt 4.3 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.3"
+Browser="Qt"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Android"
+Platform="Android"
+
+[Qt 4.3 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.3"
+Browser="Qt"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.3]
+Parent="DefaultProperties"
+Comment="Qt 4.3"
+Browser="Qt"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*Safari/*]
+Parent="Qt 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.3*]
+Parent="Qt 4.3"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.4
+
+[Qt 4.4 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.4"
+Browser="Qt"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Android"
+Platform="Android"
+
+[Qt 4.4 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.4"
+Browser="Qt"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.4]
+Parent="DefaultProperties"
+Comment="Qt 4.4"
+Browser="Qt"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*Safari/*]
+Parent="Qt 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.4*]
+Parent="Qt 4.4"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.5
+
+[Qt 4.5 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.5"
+Browser="Qt"
+Version="4.5"
+MajorVer=4
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Android"
+Platform="Android"
+
+[Qt 4.5 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.5"
+Browser="Qt"
+Version="4.5"
+MajorVer=4
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.5]
+Parent="DefaultProperties"
+Comment="Qt 4.5"
+Browser="Qt"
+Version="4.5"
+MajorVer=4
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*Safari/*]
+Parent="Qt 4.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.5*]
+Parent="Qt 4.5"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.6
+
+[Qt 4.6 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.6"
+Browser="Qt"
+Version="4.6"
+MajorVer=4
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Android"
+Platform="Android"
+
+[Qt 4.6 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.6"
+Browser="Qt"
+Version="4.6"
+MajorVer=4
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.6]
+Parent="DefaultProperties"
+Comment="Qt 4.6"
+Browser="Qt"
+Version="4.6"
+MajorVer=4
+MinorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*Safari/*]
+Parent="Qt 4.6"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.6*]
+Parent="Qt 4.6"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.7
+
+[Qt 4.7 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.7"
+Browser="Qt"
+Version="4.7"
+MajorVer=4
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Android"
+Platform="Android"
+
+[Qt 4.7 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.7"
+Browser="Qt"
+Version="4.7"
+MajorVer=4
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.7]
+Parent="DefaultProperties"
+Comment="Qt 4.7"
+Browser="Qt"
+Version="4.7"
+MajorVer=4
+MinorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*Safari/*]
+Parent="Qt 4.7"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.7*]
+Parent="Qt 4.7"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt 4.8
+
+[Qt 4.8 for Android]
+Parent="DefaultProperties"
+Comment="Qt 4.8"
+Browser="Qt"
+Version="4.8"
+MajorVer=4
+MinorVer=8
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Android"
+Platform="Android"
+
+[Qt 4.8 for Meego]
+Parent="DefaultProperties"
+Comment="Qt 4.8"
+Browser="Qt"
+Version="4.8"
+MajorVer=4
+MinorVer=8
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8 for Meego"
+Platform="MeeGo"
+
+[Mozilla/5.0 (*MeeGo*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8 for Meego"
+Platform="MeeGo"
+isMobileDevice="false"
+
+[Qt 4.8]
+Parent="DefaultProperties"
+Comment="Qt 4.8"
+Browser="Qt"
+Version="4.8"
+MajorVer=4
+MinorVer=8
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*Safari/*]
+Parent="Qt 4.8"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/4.8*]
+Parent="Qt 4.8"
+Platform="Win32"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Okta Mobile 4.0
+
+[Okta Mobile 4.0 for iOS]
+Parent="DefaultProperties"
+Comment="Okta Mobile 4.0"
+Browser="Okta Mobile App"
+Version="4.0"
+MajorVer=4
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 8?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+isTablet="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 8?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 8_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPhone*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 8?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+[Mozilla/5.0*(iPod*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPod*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPod*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPod*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPod*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPod*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPod*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPod*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPod*CPU OS 8_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(iPod*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPod*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 8?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+[Mozilla/5.0*(*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(*CPU OS 8_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.1"
+
+[Mozilla/5.0*(*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*) Version/*Safari/* OktaMobile/4.0*]
+Parent="Okta Mobile 4.0 for iOS"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Googlebot-Mobile
+
+[Googlebot-Mobile]
+Parent="DefaultProperties"
+Comment="Googlebot"
+Browser="Google Bot Mobile"
+isMobileDevice="true"
+Crawler="true"
+
+[KDDI-Googlebot-Mobile]
+Parent="Googlebot-Mobile"
+
+[*Googlebot-Mobile/2.*]
+Parent="Googlebot-Mobile"
+Version="2.0"
+MajorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt Generic
+
+[Qt Generic for Android]
+Parent="DefaultProperties"
+Comment="Qt Generic"
+Browser="Qt"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic for Android"
+Platform="Android"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="Linux"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="Linux"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="MacOSX"
+Platform_Version=10
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Qt/*]
+Parent="Qt Generic for Android"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+isMobileDevice="false"
+
+[Qt Generic]
+Parent="DefaultProperties"
+Comment="Qt Generic"
+Browser="Qt"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*Safari/*]
+Parent="Qt Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="ChromeOS"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.4"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.5"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.6"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.7"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.8"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.9"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version="10.10"
+Win32="false"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 4.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win8"
+Platform_Version="6.2"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="false"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)*Qt/*]
+Parent="Qt Generic"
+Platform="Win8.1"
+Platform_Version="6.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; EB iPhone/IPad App
+
+[EB iPhone/IPad App]
+Parent="DefaultProperties"
+Comment="EB iPhone/IPad App"
+Browser="EB iPhone/IPad App"
+Platform="iOS"
+isMobileDevice="true"
+
+[eb-iphone/3.8* (*iPhone OS?7?0*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="7.0"
+isTablet="true"
+
+[eb-iphone/3.8* (*iPhone OS?7?1*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="7.1"
+isTablet="true"
+
+[eb-iphone/3.8* (*iPhone OS?8?0*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="8.0"
+isTablet="true"
+
+[eb-iphone/3.8* (*iPhone OS?7?0*) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="7.0"
+
+[eb-iphone/3.8* (*iPhone OS?7?1*) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="7.1"
+
+[eb-iphone/3.8* (*iPhone OS?8?0*) Mobile]
+Parent="EB iPhone/IPad App"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform_Version="8.0"
+
+[eb-iphone/* (*iPhone OS?7?0*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="7.0"
+isTablet="true"
+
+[eb-iphone/* (*iPhone OS?7?1*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="7.1"
+isTablet="true"
+
+[eb-iphone/* (*iPhone OS?8?0*iPad) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="8.0"
+isTablet="true"
+
+[eb-iphone/* (*iPhone OS?7?0*) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="7.0"
+
+[eb-iphone/* (*iPhone OS?7?1*) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="7.1"
+
+[eb-iphone/* (*iPhone OS?8?0*) Mobile]
+Parent="EB iPhone/IPad App"
+Platform_Version="8.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Apple Mail
+
+[Apple Mail for iOS]
+Parent="DefaultProperties"
+Comment="Apple Mail"
+Browser="Apple Mail"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+isTablet="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Mozilla/5.0*(iPhone*CPU OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPhone*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPhone*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPhone*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Mozilla/5.0*(iPod*CPU OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(iPod*CPU OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(iPod*CPU OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(iPod*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(iPod*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(iPod*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(iPod*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(iPod*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(iPod*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(iPod*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(iPod*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(iPod*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(iPod*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Mozilla/5.0*(*CPU OS 3_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="3.2"
+
+[Mozilla/5.0*(*CPU OS 4_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.0"
+
+[Mozilla/5.0*(*CPU OS 4_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.1"
+
+[Mozilla/5.0*(*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.2"
+
+[Mozilla/5.0*(*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="4.3"
+
+[Mozilla/5.0*(*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.1"
+
+[Mozilla/5.0*(*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="5.0"
+
+[Mozilla/5.0*(*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.1"
+
+[Mozilla/5.0*(*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="6.0"
+
+[Mozilla/5.0*(*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.1"
+
+[Mozilla/5.0*(*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="7.0"
+
+[Mozilla/5.0*(*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+Platform_Version="8.0"
+
+[Mozilla/5.0*(*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)]
+Parent="Apple Mail for iOS"
+
+[Apple Mail for Darwin and OSX]
+Parent="DefaultProperties"
+Comment="Apple Mail"
+Browser="Apple Mail"
+Platform="Darwin"
+
+[Mail/* CFNetwork/* *Darwin*]
+Parent="Apple Mail for Darwin and OSX"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit* (KHTML, like Gecko)]
+Parent="Apple Mail for Darwin and OSX"
+Platform="MacOSX"
+Platform_Version=10
+
+[Apple Mail for Windows]
+Parent="DefaultProperties"
+Comment="Apple Mail"
+Browser="Apple Mail"
+Platform="Darwin"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko)]
+Parent="Apple Mail for Windows"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Qt Car Browser
+
+[Qt Car Browser]
+Parent="DefaultProperties"
+Comment="Model S Browser"
+Browser="Model S Browser"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (X11; Linux) AppleWebKit/* (KHTML, like Gecko) QtCarBrowser Safari/*]
+Parent="Qt Car Browser"
+Platform="Linux"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.0
+
+[MQQBrowser 3.0]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.0"
+Browser="MQQBrowser"
+Version="3.0"
+MajorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.0/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.0"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.1
+
+[MQQBrowser 3.1]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.1"
+Browser="MQQBrowser"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.1/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.1"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.2
+
+[MQQBrowser 3.2]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.2"
+Browser="MQQBrowser"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.2/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.2"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.3
+
+[MQQBrowser 3.3]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.3"
+Browser="MQQBrowser"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.3/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.3"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.4
+
+[MQQBrowser 3.4]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.4"
+Browser="MQQBrowser"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.4/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.4"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser 3.5
+
+[MQQBrowser 3.5]
+Parent="DefaultProperties"
+Comment="MQQBrowser 3.5"
+Browser="MQQBrowser"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+isMobileDevice="true"
+CssVersion=3
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?2.3*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.0*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.1*GT-N7100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+Win32="false"
+
+[MQQBrowser/3.5/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser 3.5"
+Platform="Android"
+Win32="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBooks Author
+
+[iBooks Author]
+Parent="DefaultProperties"
+Comment="iBooks Author"
+Browser="iBooks Author"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) iBooks Author/*]
+Parent="iBooks Author"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) iBooks Author/*]
+Parent="iBooks Author"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) iBooks Author/*]
+Parent="iBooks Author"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MQQBrowser Generic
+
+[MQQBrowser Generic]
+Parent="DefaultProperties"
+Comment="MQQBrowser Generic"
+Browser="MQQBrowser"
+isMobileDevice="true"
+CssVersion=1
+
+[MQQBrowser/*/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser Generic"
+Platform="Android"
+Platform_Version="2.3"
+
+[MQQBrowser/*/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser Generic"
+Platform="Android"
+Platform_Version="4.0"
+
+[MQQBrowser/*/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="MQQBrowser Generic"
+Platform="Android"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Sandvox
+
+[Sandvox]
+Parent="DefaultProperties"
+Comment="Sandvox"
+Browser="Sandvox"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/2.9* Sandvox*]
+Parent="Sandvox"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/* Sandvox*]
+Parent="Sandvox"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iWeb
+
+[iWeb]
+Parent="DefaultProperties"
+Comment="iWeb"
+Browser="iWeb"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) iWeb/*]
+Parent="iWeb"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) iWeb/*]
+Parent="iWeb"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) iWeb/*]
+Parent="iWeb"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Elluminate Live
+
+[Elluminate Live]
+Parent="DefaultProperties"
+Comment="Elluminate Live"
+Browser="Elluminate Live"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Elluminate Live*]
+Parent="Elluminate Live"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; TubeTV
+
+[TubeTV]
+Parent="DefaultProperties"
+Comment="TubeTV"
+Browser="TubeTV"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) TubeTV*]
+Parent="TubeTV"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rocky ChatWork Mobile 3.0
+
+[Rocky ChatWork Mobile 3.0]
+Parent="DefaultProperties"
+Comment="Rocky ChatWork Mobile 3.0"
+Browser="Rocky ChatWork Mobile"
+Version="3.0"
+MajorVer=3
+Platform="iOS"
+isMobileDevice="true"
+
+[Rocky ChatWork Mobile/3.0*iosv7.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.0*iosv7.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.0*iosv8.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.0*iosv8.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.0*iosv* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.0"
+
+[Rocky ChatWork Mobile/3.0*iosv7.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.0*iosv7.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.0*iosv8.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.0*iosv8.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.0"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.0*iosv* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rocky ChatWork Mobile 3.1
+
+[Rocky ChatWork Mobile 3.1]
+Parent="DefaultProperties"
+Comment="Rocky ChatWork Mobile 3.1"
+Browser="Rocky ChatWork Mobile"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Platform="iOS"
+isMobileDevice="true"
+
+[Rocky ChatWork Mobile/3.1*iosv7.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.1*iosv7.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.1*iosv8.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.1*iosv8.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.1*iosv* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.1"
+
+[Rocky ChatWork Mobile/3.1*iosv7.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.1*iosv7.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.1*iosv8.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.1*iosv8.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.1"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.1*iosv* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rocky ChatWork Mobile 3.2
+
+[Rocky ChatWork Mobile 3.2]
+Parent="DefaultProperties"
+Comment="Rocky ChatWork Mobile 3.2"
+Browser="Rocky ChatWork Mobile"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Platform="iOS"
+isMobileDevice="true"
+
+[Rocky ChatWork Mobile/3.2*iosv7.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.2*iosv7.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.2*iosv8.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.2*iosv8.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.2*iosv* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.2"
+
+[Rocky ChatWork Mobile/3.2*iosv7.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.2*iosv7.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.2*iosv8.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.2*iosv8.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.2"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.2*iosv* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rocky ChatWork Mobile 3.3
+
+[Rocky ChatWork Mobile 3.3]
+Parent="DefaultProperties"
+Comment="Rocky ChatWork Mobile 3.3"
+Browser="Rocky ChatWork Mobile"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Platform="iOS"
+isMobileDevice="true"
+
+[Rocky ChatWork Mobile/3.3*iosv7.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.3*iosv7.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.3*iosv8.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.3*iosv8.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.3*iosv* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.3"
+
+[Rocky ChatWork Mobile/3.3*iosv7.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.3*iosv7.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.3*iosv8.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.3*iosv8.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.3"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.3*iosv* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Rocky ChatWork Mobile 3.4
+
+[Rocky ChatWork Mobile 3.4]
+Parent="DefaultProperties"
+Comment="Rocky ChatWork Mobile 3.4"
+Browser="Rocky ChatWork Mobile"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Platform="iOS"
+isMobileDevice="true"
+
+[Rocky ChatWork Mobile/3.4*iosv7.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.4*iosv7.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.4*iosv8.0* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.4*iosv8.1* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.4*iosv* (iPhone App iPhone*]
+Parent="Rocky ChatWork Mobile 3.4"
+
+[Rocky ChatWork Mobile/3.4*iosv7.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="7.0"
+
+[Rocky ChatWork Mobile/3.4*iosv7.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="7.1"
+
+[Rocky ChatWork Mobile/3.4*iosv8.0* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="8.0"
+
+[Rocky ChatWork Mobile/3.4*iosv8.1* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.4"
+Platform_Version="8.1"
+
+[Rocky ChatWork Mobile/3.4*iosv* (iPhone App*]
+Parent="Rocky ChatWork Mobile 3.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Google Code
+
+[Google Code]
+Parent="DefaultProperties"
+Comment="Google Code"
+Browser="Google Code"
+
+[Google-HTTP-Java-Client/1.17*]
+Parent="Google Code"
+Comment="Google HTTP Client Library for Java"
+Browser="Google HTTP Client Library for Java"
+Version="1.17"
+MajorVer=1
+MinorVer=17
+
+[Google-HTTP-Java-Client/*]
+Parent="Google Code"
+Comment="Google HTTP Client Library for Java"
+Browser="Google HTTP Client Library for Java"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.6
+
+[Arora 0.6]
+Parent="DefaultProperties"
+Comment="Arora 0.6"
+Browser="Arora"
+Version="0.6"
+MinorVer=6
+Platform="Win32"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.6*]
+Parent="Arora 0.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="Linux"
+Win32="false"
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.6* Safari/*]
+Parent="Arora 0.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.8
+
+[Arora 0.8]
+Parent="DefaultProperties"
+Comment="Arora 0.8"
+Browser="Arora"
+Version="0.8"
+MinorVer=8
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.8*]
+Parent="Arora 0.8"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.8* Safari/*]
+Parent="Arora 0.8"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.9
+
+[Arora 0.9]
+Parent="DefaultProperties"
+Comment="Arora 0.9"
+Browser="Arora"
+Version="0.9"
+MinorVer=9
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.9*]
+Parent="Arora 0.9"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.9* Safari/*]
+Parent="Arora 0.9"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.10
+
+[Arora 0.10]
+Parent="DefaultProperties"
+Comment="Arora 0.10"
+Browser="Arora"
+Version="0.10"
+MinorVer=10
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.10*]
+Parent="Arora 0.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.10* Safari/*]
+Parent="Arora 0.10"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora 0.11
+
+[Arora 0.11]
+Parent="DefaultProperties"
+Comment="Arora 0.11"
+Browser="Arora"
+Version="0.11"
+MinorVer=11
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.11*]
+Parent="Arora 0.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.11* Safari/*]
+Parent="Arora 0.11"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Arora Generic
+
+[Arora Generic]
+Parent="DefaultProperties"
+Comment="Arora Generic"
+Browser="Arora"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko, Safari/*) Arora/0.?*]
+Parent="Arora Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) Arora/0.?* Safari/*]
+Parent="Arora Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Mail.Ru Bot
+
+[Mail.Ru Bot]
+Parent="DefaultProperties"
+Comment="Mail.Ru"
+Browser="Mail.Ru"
+Crawler="true"
+
+[Mail.Ru/1.0]
+Parent="Mail.Ru Bot"
+Version="1.0"
+MajorVer=1
+
+[Mozilla/5.0 (compatible; Mail.RU_Bot/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; *Linux*x86_64* Mail.RU_Bot/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux i686* Mail.RU_Bot/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux* Mail.RU_Bot/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux*x86_64* Mail.RU_Bot/Fast/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux i686* Mail.RU_Bot/Fast/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux* Mail.RU_Bot/Fast/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux*x86_64* Mail.RU_Bot/Img/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux i686* Mail.RU_Bot/Img/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux* Mail.RU_Bot/Img/2.0*]
+Parent="Mail.Ru Bot"
+Version="2.0"
+MajorVer=2
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux*x86_64* Mail.RU_Bot/*]
+Parent="Mail.Ru Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux i686* Mail.RU_Bot/*]
+Parent="Mail.Ru Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; *Linux* Mail.RU_Bot/*]
+Parent="Mail.Ru Bot"
+Platform="Linux"
+
+[Mozilla/5.0 (compatible; Mail.RU/*)]
+Parent="Mail.Ru Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN-Media
+
+[MSN-Media]
+Parent="DefaultProperties"
+Comment="MSN-Media"
+Browser="msnbot-media"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[msnbot-media/1.0*]
+Parent="MSN-Media"
+Version="1.0"
+MajorVer=1
+
+[msnbot-media/1.1*]
+Parent="MSN-Media"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[msnbot-media/*]
+Parent="MSN-Media"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) MsnBot-Media /1.0b*]
+Parent="MSN-Media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win32="true"
+
+[MSN-Media for iOS]
+Parent="DefaultProperties"
+Comment="MSN-Media"
+Browser="msnbot-media"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Beta="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/*Safari/* MsnBot-Media /1.0b]
+Parent="MSN-Media for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN
+
+[MSN]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="MSN"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*Gecko/*]
+Parent="MSN"
+Browser="Danger"
+Version="3.0"
+MajorVer=3
+
+[Windows-Live-Social-Object-Extractor-Engine/*]
+Parent="MSN"
+
+[Vancouver*]
+Parent="MSN"
+Browser="Vancouver"
+isSyndicationReader="true"
+
+[librabot/1.0 (*)]
+Parent="MSN"
+Browser="librabot"
+
+[llssbot/1.0]
+Parent="MSN"
+Browser="llssbot"
+Version="1.0"
+MajorVer=1
+
+[Microsoft Bing Mobile SocialStreams Bot]
+Parent="MSN"
+Browser="Microsoft Bing Mobile SocialStreams Bot"
+
+[Mozilla/5.0 (Danger hiptop 3.*; U; rv:1.7.*) Gecko/*]
+Parent="MSN"
+Browser="Danger"
+Version="3.0"
+MajorVer=3
+
+[MSMOBOT/1.1*]
+Parent="MSN"
+Browser="msnbot-mobile"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[MSNBot-Academic/1.0*]
+Parent="MSN"
+Browser="MSNBot-Academic"
+Version="1.0"
+MajorVer=1
+
+[MSNBot-News/1.0*]
+Parent="MSN"
+Browser="MSNBot-News"
+Version="1.0"
+MajorVer=1
+
+[MSNBot-NewsBlogs/1.0*]
+Parent="MSN"
+Browser="MSNBot-NewsBlogs"
+Version="1.0"
+MajorVer=1
+
+[msnbot-NewsBlogs/2.* (+http://search.msn.com/msnbot.htm)]
+Parent="MSN"
+Browser="msnbot-NewsBlogs"
+Version="2.0"
+MajorVer=2
+
+[msnbot-products]
+Parent="MSN"
+Browser="msnbot-products"
+
+[msnbot-webmaster/1.0 (*http://search.msn.com/msnbot.htm)]
+Parent="MSN"
+Browser="msnbot-webmaster tools"
+
+[msnbot/1.0*]
+Parent="MSN"
+Browser="msnbot"
+Version="1.0"
+MajorVer=1
+
+[msnbot/1.1*]
+Parent="MSN"
+Browser="msnbot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[msnbot/2.0b*]
+Parent="MSN"
+Browser="msnbot"
+Version="2.0"
+MajorVer=2
+Beta="true"
+
+[MSR-ISRCCrawler]
+Parent="MSN"
+Browser="MSR-ISRCCrawler"
+
+[MSRBOT*]
+Parent="MSN"
+Browser="MSRBOT"
+
+[renlifangbot/1.0 (?http://search.msn.com/msnbot.htm)]
+Parent="MSN"
+Browser="renlifangbot"
+
+[Windows-Live-Social-Object-Extractor-Engine/1.0]
+Parent="MSN"
+Browser="Windows-Live-Social-Object-Extractor-Eng"
+
+[T-Mobile Dash Mozilla/4.0 (*MSNBOT-MOBILE/1.1*]
+Parent="MSN"
+Browser="msnbot-mobile"
+
+[msnbot-UDiscovery/*]
+Parent="MSN"
+
+[msnbot/*]
+Parent="MSN"
+
+[msnbot/2.0*]
+Parent="MSN"
+Version="2.0"
+MajorVer=2
+
+[MSNBot-News/*]
+Parent="MSN"
+Browser="MSNBot-News"
+
+[MSNBot-NewsBlogs/*]
+Parent="MSN"
+Browser="msnbot-NewsBlogs"
+
+[msnbot-webmaster/*]
+Parent="MSN"
+Browser="msnbot-webmaster tools"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BingBot
+
+[BingBot]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="BingBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Bing/2.2* CFNetwork/* *Darwin*]
+Parent="BingBot"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Darwin"
+
+[Mozilla/5.0 (compatible;*bingbot/2.0*]
+Parent="BingBot"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible;*bingbot/*]
+Parent="BingBot"
+
+[Bing/* CFNetwork/* *Darwin*]
+Parent="BingBot"
+Platform="Darwin"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; adidxbot
+
+[adidxbot]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="adidxbot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[adidxbot/1.1 (?http://search.msn.com/msnbot.htm)]
+Parent="adidxbot"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[adidxbot/2.0*]
+Parent="adidxbot"
+Version="2.0"
+MajorVer=2
+
+[adidxbot/*]
+Parent="adidxbot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; BingPreview
+
+[BingPreview]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="BingPreview"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) *BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) *BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1*WOW64* Trident/5.0; *BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 9.0; *Windows NT 6.1* Trident/5.0; *BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1*Win64? x64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1*WOW64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.1* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2*Win64? x64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2*WOW64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.2* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.3*Win64? x64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.3*WOW64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.3* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.4*Win64? x64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.4*WOW64* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (compatible; MSIE 10.0; *Windows NT 6.4* Trident/6.0*)*BingPreview/1.0b*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Win64? x64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win7"
+Platform_Version="6.1"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Win64? x64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8"
+Platform_Version="6.2"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Win64? x64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win8.1"
+Platform_Version="6.3"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*Win64? x64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*WOW64*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.4*Trident/7.0*rv:11.0; BingPreview/1.0b*)*]
+Parent="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Platform="Win10"
+Platform_Version="6.4"
+Beta="true"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) *BingPreview/1.0*]
+Parent="BingPreview"
+Version="1.0"
+MajorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML,*like Gecko*) *BingPreview/1.0*]
+Parent="BingPreview"
+Version="1.0"
+MajorVer=1
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/* (*) AppleWebKit/* (KHTML, like Gecko) BingPreview/*]
+Parent="BingPreview"
+
+[BingPreview for iOS]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="BingPreview"
+Version="1.0b"
+MajorVer=1
+MinorVer=0b
+Beta="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPad*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+isTablet="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPhone*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(iPod*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 3?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="3.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 4?3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 5?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 6?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 7?1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 8?0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS 10?10* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU iPhone OS * like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 4_2* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.2"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 4_3* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="4.3"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 5_0* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 5_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="5.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 6_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 6* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="6.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 7_1* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 7* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU OS 8* like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[Mozilla/5.0*(*CPU*OS*like Mac OS X*)*AppleWebKit/*(*KHTML? like Gecko*)*Version/*Safari/* BingPreview/1.0b]
+Parent="BingPreview for iOS"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; MSN Mobile Proxy
+
+[MSN Mobile Proxy]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="MSN Mobile Proxy"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+ActiveXControls="true"
+isMobileDevice="true"
+Crawler="true"
+
+[Mozilla/* (compatible*; MSIE *; Windows*; MSN Mobile Proxy)]
+Parent="MSN Mobile Proxy"
+Platform="Win32"
+Win32="true"
+isMobileDevice="false"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Phone Search
+
+[Windows Phone Search]
+Parent="DefaultProperties"
+Comment="MSN"
+Browser="Windows Phone Search"
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+isMobileDevice="true"
+Crawler="true"
+
+[Windows Phone Search (Windows Phone OS 7.10;HTC;7 Trophy;*)]
+Parent="Windows Phone Search"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Windows Phone Search (Windows Phone OS 7.10;NOKIA;Lumia 900;*)]
+Parent="Windows Phone Search"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Windows Phone Search (Windows Phone OS 7.10;*)]
+Parent="Windows Phone Search"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; VoilaBot
+
+[VoilaBot]
+Parent="DefaultProperties"
+Comment="VoilaBot"
+Browser="VoilaBot"
+Crawler="true"
+
+[Mozilla/5.0 (*) VoilaBot*]
+Parent="VoilaBot"
+
+[Mozilla/5.0 (*VoilaBot*]
+Parent="VoilaBot"
+
+[Mozilla/5.0 (*Windows NT 5.1*) VoilaBot*]
+Parent="VoilaBot"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YaCy
+
+[YaCy]
+Parent="DefaultProperties"
+Comment="YaCy Bot"
+Browser="YaCy Bot"
+Frames="true"
+Tables="true"
+Crawler="true"
+
+[yacybot *]
+Parent="YaCy"
+
+[yacybot (freeworld?global; i386 Linux *http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (i386 linux *http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (amd64 linux *http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (freeworld/global; amd64 Linux 3.2 *http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (freeworld?global; amd64 Linux*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (freeworld?global; i386 Linux *-amd64*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (sciencenet?global; amd64 Linux *http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Linux"
+
+[yacybot (freeworld/global; x86 Windows 7 6.1;*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[yacybot (freeworld/global; x86 Windows XP 5.1;*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[yacybot (webportal-global; x86 Windows XP 5.1;*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[yacybot (freeworld/global; amd64 Windows Vista 6.0;*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[yacybot (freeworld?global; amd64 Windows 7 6.1;*http://yacy.net/bot.html]
+Parent="YaCy"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo
+
+[Yahoo]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Y!%20Messenger/* CFNetwork/* *Darwin*]
+Parent="Yahoo"
+Platform="Darwin"
+
+[Mozilla/4.0 (compatible; Y!J; for robot study*)]
+Parent="Yahoo"
+Browser="Y!J"
+
+[KDDI-CA33 UP.Browser/6.2* (compatible; Y!J-SRD/1.0; http://help.yahoo.co.jp/help/jp/search/indexing/indexing-27.html)]
+Parent="Yahoo"
+
+[KDDI-HI21 UP.Browser/6.0* (compatible; Y!J-SRD/1.0; http://help.yahoo.co.jp/help/jp/search/indexing/indexing-27.html)]
+Parent="Yahoo"
+
+[Mozilla/4.0]
+Parent="Yahoo"
+
+[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*KHTML/* (like Gecko)]
+Parent="Yahoo"
+
+[Mozilla/5.0 (compatible; del.icio.us-thumbnails/*; *) KHTML/* (like Gecko)]
+Parent="Yahoo"
+
+[YahooCacheSystem]
+Parent="Yahoo"
+
+[Mozilla/4.0 (*compatible*;*MSIE 5.0; Windows NT)]
+Parent="Yahoo"
+Platform="WinNT"
+Platform_Version="4.0"
+Win32="true"
+
+[Mozilla/5.0 (Yahoo-MMCrawler/4.*; mailto:vertical-crawl-support@yahoo-inc.com)]
+Parent="Yahoo"
+Browser="Yahoo-MMCrawler"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/5.0 (Yahoo-MMCrawler/*; mailto:vertical-crawl-support@yahoo-inc.com)]
+Parent="Yahoo"
+Browser="Yahoo-MMCrawler"
+
+[Mozilla/5.0 (Yahoo-Test/*)]
+Parent="Yahoo"
+Browser="Yahoo-Test"
+
+[Mozilla/5.0 (YahooYSMcm*)]
+Parent="Yahoo"
+Browser="YahooYSMcm"
+
+[mp3Spider cn-search-devel at yahoo-inc dot com]
+Parent="Yahoo"
+Browser="Yahoo! Media"
+
+[My Browser]
+Parent="Yahoo"
+Browser="Yahoo! My Browser"
+
+[Scooter/3.3*]
+Parent="Yahoo"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+
+[Scooter*]
+Parent="Yahoo"
+Browser="Scooter"
+
+[Y!OASIS*]
+Parent="Yahoo"
+Browser="Y!OASIS"
+
+[Yahoo Mindset]
+Parent="Yahoo"
+Browser="Yahoo Mindset"
+
+[Yahoo Pipes*]
+Parent="Yahoo"
+Browser="Yahoo Pipes"
+
+[Yahoo! Mindset]
+Parent="Yahoo"
+Browser="Yahoo! Mindset"
+
+[Yahoo-Blogs*]
+Parent="Yahoo"
+Browser="Yahoo-Blogs"
+
+[Yahoo-MMAudVid*]
+Parent="Yahoo"
+Browser="Yahoo-MMAudVid"
+
+[Yahoo-MMCrawler*]
+Parent="Yahoo"
+Browser="Yahoo-MMCrawler"
+
+[YahooExternalCache]
+Parent="Yahoo"
+Browser="YahooExternalCache"
+
+[YahooVideoSearch*]
+Parent="Yahoo"
+Browser="YahooVideoSearch"
+
+[YahooYSMcm*]
+Parent="Yahoo"
+Browser="YahooYSMcm"
+
+[YRL_ODP_CRAWLER]
+Parent="Yahoo"
+Browser="YRL_ODP_CRAWLER"
+
+[Yahoo:LinkExpander:Slingstone]
+Parent="Yahoo"
+Browser="Yahoo Slingstone"
+
+[Mozilla/5.0 (compatible; Yahoo Ad monitoring*]
+Parent="Yahoo"
+Browser="Yahoo Ad Monitoring"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Y!J-AGENT
+
+[Y!J-AGENT]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Y!J-AGENT"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; BMC/* (Y!J-AGENT))]
+Parent="Y!J-AGENT"
+Browser="Y!J-AGENT/BMC"
+
+[Mozilla/5.0 (compatible; BMF/* (Y!J-AGENT))]
+Parent="Y!J-AGENT"
+Browser="Y!J-AGENT/BMF"
+
+[Mozilla/5.0 (compatible; BMI/* (Y!J-AGENT; 1.0))]
+Parent="Y!J-AGENT"
+Browser="Y!J-AGENT/BMI"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo AdCrawler
+
+[Yahoo AdCrawler]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo!-AdCrawler"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Yahoo!-AdCrawler;*http://help.yahoo.com/yahoo_adcrawler)]
+Parent="Yahoo AdCrawler"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooMobile 3.1
+
+[YahooMobile 3.1]
+Parent="DefaultProperties"
+Comment="Yahoo Mobile App 3.1"
+Browser="Yahoo Mobile App"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?6?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?8?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?6?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?8?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?6?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?1*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?8?0*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS*); YHOO_Search_App/3.1*]
+Parent="YahooMobile 3.1"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooMobile 3.2
+
+[YahooMobile 3.2]
+Parent="DefaultProperties"
+Comment="Yahoo Mobile App 3.2"
+Browser="Yahoo Mobile App"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?6?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?8?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?6?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?8?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?6?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?1*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?8?0*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS*); YHOO_Search_App/3.2*]
+Parent="YahooMobile 3.2"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooMobile 3.3
+
+[YahooMobile 3.3]
+Parent="DefaultProperties"
+Comment="Yahoo Mobile App 3.3"
+Browser="Yahoo Mobile App"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?6?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?8?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?6?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?8?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?6?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?1*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?8?0*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS*); YHOO_Search_App/3.3*]
+Parent="YahooMobile 3.3"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooMobile 4.0
+
+[YahooMobile 4.0]
+Parent="DefaultProperties"
+Comment="Yahoo Mobile App 4.0"
+Browser="Yahoo Mobile App"
+Version="4.0"
+MajorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?6?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?8?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?6?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?8?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?6?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?1*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?8?0*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS*); YHOO_Search_App/4.0*]
+Parent="YahooMobile 4.0"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooMobile 5.0
+
+[YahooMobile 5.0]
+Parent="DefaultProperties"
+Comment="Yahoo Mobile App 5.0"
+Browser="Yahoo Mobile App"
+Version="5.0"
+MajorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?6?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?7?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS?8?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPhone*iPhone OS*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?6?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?7?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS?8?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(Apple; iPod*iPhone OS*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?6?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="6.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?7?1*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="7.1"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS?8?0*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+Platform_Version="8.0"
+isMobileDevice="true"
+
+[YahooMobile/1.0 *(*iPhone OS*); YHOO_Search_App/5.0*]
+Parent="YahooMobile 5.0"
+Platform="iOS"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo RobotStudy
+
+[Yahoo RobotStudy]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo! RobotStudy"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/4.0 (compatible; Yahoo Japan; for robot study; kasugiya)]
+Parent="Yahoo RobotStudy"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo Search Monkey
+
+[Yahoo Search Monkey]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo! Search Monkey"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Yahoo! SearchMonkey*)]
+Parent="Yahoo Search Monkey"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo Slurp
+
+[Yahoo Slurp]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo! Slurp"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/3.0 (Slurp*; slurp@inktomi.com;*]
+Parent="Yahoo Slurp"
+
+[Mozilla/5.0 (Slurp*; slurp@inktomi.com;*]
+Parent="Yahoo Slurp"
+
+[Mozilla/5.0 (compatible; Yahoo! *Slurp*]
+Parent="Yahoo Slurp"
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp China*)]
+Parent="Yahoo Slurp"
+Browser="Yahoo! Slurp China"
+
+[Mozilla/5.0 (compatible; Yahoo! DE Slurp; http://help.yahoo.com/help/us/ysearch/slurp)]
+Parent="Yahoo Slurp"
+Browser="Yahoo! Directory Engine"
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp China*;*http://misc.yahoo.com.cn/help.html)]
+Parent="Yahoo Slurp"
+Browser="Yahoo! Slurp China"
+
+[Mozilla/5.0 (compatible; Yahoo! Slurp*;*http://help.yahoo.com/help/us/ysearch/slurp*]
+Parent="Yahoo Slurp"
+
+[Yahoo! Slurp/Site Explorer]
+Parent="Yahoo Slurp"
+Browser="Yahoo! Site Explorer"
+
+[slurp]
+Parent="Yahoo Slurp"
+Browser="slurp"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Yahoo Verifier
+
+[Yahoo Verifier]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="Yahoo! Verifier"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Yahoo! Verifier/*)]
+Parent="Yahoo Verifier"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooSeeker
+
+[YahooSeeker]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="YahooSeeker"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[YahooSeeker/CafeKelsa* (compatible; Konqueror/*; FreeBSD*(KHTML,*like Gecko*)]
+Parent="YahooSeeker"
+Platform="FreeBSD"
+
+[YahooSeeker*]
+Parent="YahooSeeker"
+isMobileDevice="true"
+
+[YahooSeeker/CafeKelsa*]
+Parent="YahooSeeker"
+Browser="YahooSeeker/CafeKelsa"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooSeeker-Mobile
+
+[YahooSeeker-Mobile]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="YahooSeeker-Mobile"
+isMobileDevice="true"
+Crawler="true"
+
+[LG-C1500 UP.Browser/6.2.3 (GUI) MMP/1.0 (compatible;YahooSeeker/M1A1-R2D2; http://help.yahoo.com/help/us/ysearch/crawling/crawling-01.html)]
+Parent="YahooSeeker-Mobile"
+
+[LG-C1500 UP.Browser/6.2.3 (GUI) MMP/1.0 (compatible;YahooSeeker/M1A1-R2D2;mobile-search-customer-care AT yahoo-inc dot com)]
+Parent="YahooSeeker-Mobile"
+
+[Nokia6682/2.0 (*SymbianOS/* (compatible;*YahooSeeker/*)]
+Parent="YahooSeeker-Mobile"
+
+[Mozilla/5.0 (compatible; YahooSeeker/M1A1-R2D2*)]
+Parent="YahooSeeker-Mobile"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YahooFeedSeeker
+
+[YahooFeedSeeker]
+Parent="DefaultProperties"
+Comment="Yahoo"
+Browser="YahooFeedSeeker"
+Frames="true"
+IFrames="true"
+Tables="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[YahooFeedSeeker*]
+Parent="YahooFeedSeeker"
+
+[Y!J SearchMonkey*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRE*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRG/GSC*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRI*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRO/YFSJ*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRP/YFSBJ*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BRQ/DLCK*]
+Parent="YahooFeedSeeker"
+
+[Y!J-BSC*]
+Parent="YahooFeedSeeker"
+Version="1.0"
+MajorVer=1
+
+[Y!J-DSC*]
+Parent="YahooFeedSeeker"
+
+[Y!J-NSC*]
+Parent="YahooFeedSeeker"
+
+[Y!J-PSC*]
+Parent="YahooFeedSeeker"
+
+[Y!J-SRD*]
+Parent="YahooFeedSeeker"
+Version="1.0"
+MajorVer=1
+
+[Y!J-VSC/ViSe*]
+Parent="YahooFeedSeeker"
+
+[Seznam Screenshot Generator]
+Parent="General Crawlers"
+Comment="Seznam Screenshot Generator"
+Browser="Seznam Screenshot Generator"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; Seznam screenshot-generator 2.0*]
+Parent="Seznam Screenshot Generator"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (compatible; Seznam screenshot-generator*]
+Parent="Seznam Screenshot Generator"
+
+[SeznamBot]
+Parent="General Crawlers"
+Comment="SeznamBot"
+Browser="SeznamBot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[SeznamBot/3.0*]
+Parent="SeznamBot"
+Version="3.0"
+MajorVer=3
+
+[SeznamBot/3.1*]
+Parent="SeznamBot"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[Mozilla/5.0 (compatible; SeznamBot/3.1*]
+Parent="SeznamBot"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+
+[SeznamBot/3.2*]
+Parent="SeznamBot"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[Mozilla/5.0 (compatible; SeznamBot/3.2*]
+Parent="SeznamBot"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+
+[SeznamBot/*]
+Parent="SeznamBot"
+
+[Mozilla/5.0 (compatible; SeznamBot/*]
+Parent="SeznamBot"
+
+[Sindice Fetcher]
+Parent="General Crawlers"
+Comment="Sindice Fetcher"
+Browser="Sindice Fetcher"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; sindice-fetcher/0.1*]
+Parent="Sindice Fetcher"
+Version="0.1"
+MinorVer=1
+
+[Mozilla/5.0 (compatible; sindice-fetcher/*]
+Parent="Sindice Fetcher"
+
+[SpellCheck Bot]
+Parent="General Crawlers"
+Comment="SpellCheck Bot"
+Browser="SpellCheck Bot"
+Frames="true"
+IFrames="true"
+Tables="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; SpellCheck Bot 0.9*]
+Parent="SpellCheck Bot"
+Version="0.9"
+MinorVer=9
+
+[Mozilla/5.0 (compatible; SpellCheck Bot*]
+Parent="SpellCheck Bot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Media Players
+
+[Media Players]
+Parent="DefaultProperties"
+Comment="Media Players"
+Browser="Media Players"
+
+[Microsoft NetShow(TM) Player with RealVideo(R)]
+Parent="Media Players"
+Browser="Microsoft NetShow"
+
+[RMA/*]
+Parent="Media Players"
+Browser="RMA"
+
+[VLC media player*]
+Parent="Media Players"
+Browser="VLC Media Player"
+
+[VLC/2.0*]
+Parent="Media Players"
+Browser="VLC Media Player"
+Version="2.0"
+MajorVer=2
+
+[VLC/2.1*]
+Parent="Media Players"
+Browser="VLC Media Player"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+
+[VLC/*]
+Parent="Media Players"
+Browser="VLC Media Player"
+
+[vlc/*]
+Parent="Media Players"
+Browser="VLC Media Player"
+
+[vobsub]
+Parent="Media Players"
+Browser="vobsub"
+
+[WinampMPEG/*]
+Parent="Media Players"
+Browser="WinAmp"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[ElmediaPlayer Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/* Safari/*]
+Parent="Media Players"
+Browser="Elmedia Player"
+Platform="MacOSX"
+Platform_Version=10
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 2.0
+
+[NetFront 2.0]
+Parent="DefaultProperties"
+Comment="Access NetFront 2.0"
+Browser="NetFront"
+Version="2.0"
+MajorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[Mozilla/4.0 (*) *NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[Mozilla/4.0 (*NetFront/2.0*)*]
+Parent="NetFront 2.0"
+
+[SAMSUNG* *NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SEC-* *NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.0*Safari/*]
+Parent="NetFront 2.0"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/2.0*]
+Parent="NetFront 2.0"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonC902/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonC905/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonJ10i2/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonK800i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonT715/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU10i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU1i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU1iv/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU5iv/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU5u/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonU8i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW350i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW350iv/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW580i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW595/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW705/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW760i/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW980/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[SonyEricssonW995/* Browser/NetFront/2.0*]
+Parent="NetFront 2.0"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/2.0* NintendoBrowser/*]
+Parent="NetFront 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 2.2
+
+[NetFront 2.2]
+Parent="DefaultProperties"
+Comment="Access NetFront 2.2"
+Browser="NetFront"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[Mozilla/4.0 (*) *NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[Mozilla/4.0 (*NetFront/2.2*)*]
+Parent="NetFront 2.2"
+
+[SAMSUNG* *NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SEC-* *NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/2.2*Safari/*]
+Parent="NetFront 2.2"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/2.2*]
+Parent="NetFront 2.2"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonC902/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonC905/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonJ10i2/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonK800i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonT715/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU10i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU1i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU1iv/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU5iv/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU5u/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonU8i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW350i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW350iv/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW580i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW595/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW705/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW760i/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW980/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[SonyEricssonW995/* Browser/NetFront/2.2*]
+Parent="NetFront 2.2"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/2.2* NintendoBrowser/*]
+Parent="NetFront 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.0
+
+[NetFront 3.0]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.0"
+Browser="NetFront"
+Version="3.0"
+MajorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[Mozilla/4.0 (*) *NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[Mozilla/4.0 (*NetFront/3.0*)*]
+Parent="NetFront 3.0"
+
+[SAMSUNG* *NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SEC-* *NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.0*Safari/*]
+Parent="NetFront 3.0"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.0*]
+Parent="NetFront 3.0"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonC902/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonC905/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonK800i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonT715/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU10i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU1i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU5u/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonU8i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW350i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW580i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW595/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW705/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW760i/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW980/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[SonyEricssonW995/* Browser/NetFront/3.0*]
+Parent="NetFront 3.0"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.0* NintendoBrowser/*]
+Parent="NetFront 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.1
+
+[NetFront 3.1]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.1"
+Browser="NetFront"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[Mozilla/4.0 (*) *NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[Mozilla/4.0 (*NetFront/3.1*)*]
+Parent="NetFront 3.1"
+
+[SAMSUNG* *NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SEC-* *NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.1*Safari/*]
+Parent="NetFront 3.1"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.1*]
+Parent="NetFront 3.1"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonC902/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonC905/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonK800i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonT715/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU10i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU1i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU5u/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonU8i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW350i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW580i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW595/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW705/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW760i/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW980/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[SonyEricssonW995/* Browser/NetFront/3.1*]
+Parent="NetFront 3.1"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.1* NintendoBrowser/*]
+Parent="NetFront 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.2
+
+[NetFront 3.2]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.2"
+Browser="NetFront"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[Mozilla/4.0 (*) *NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[Mozilla/4.0 (*NetFront/3.2*)*]
+Parent="NetFront 3.2"
+
+[SAMSUNG* *NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SEC-* *NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.2*Safari/*]
+Parent="NetFront 3.2"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.2*]
+Parent="NetFront 3.2"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonC902/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonC905/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonK800i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonT715/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU10i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU1i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU5u/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonU8i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW350i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW580i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW595/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW705/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW760i/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW980/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[SonyEricssonW995/* Browser/NetFront/3.2*]
+Parent="NetFront 3.2"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.2* NintendoBrowser/*]
+Parent="NetFront 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.3
+
+[NetFront 3.3]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.3"
+Browser="NetFront"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[Mozilla/4.0 (*) *NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[Mozilla/4.0 (*NetFront/3.3*)*]
+Parent="NetFront 3.3"
+
+[SAMSUNG* *NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SEC-* *NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.3*Safari/*]
+Parent="NetFront 3.3"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.3*]
+Parent="NetFront 3.3"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonC902/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonC905/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonK800i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonT715/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU10i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU1i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU5u/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonU8i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW350i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW580i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW595/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW705/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW760i/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW980/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[SonyEricssonW995/* Browser/NetFront/3.3*]
+Parent="NetFront 3.3"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.3* NintendoBrowser/*]
+Parent="NetFront 3.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.4
+
+[NetFront 3.4]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.4"
+Browser="NetFront"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[Mozilla/4.0 (*) *NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[Mozilla/4.0 (*NetFront/3.4*)*]
+Parent="NetFront 3.4"
+
+[SAMSUNG* *NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SEC-* *NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.4*Safari/*]
+Parent="NetFront 3.4"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.4*]
+Parent="NetFront 3.4"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonC902/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonC905/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonK800i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonT715/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU10i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU1i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU5u/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonU8i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW350i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW580i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW595/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW705/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW760i/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW980/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[SonyEricssonW995/* Browser/NetFront/3.4*]
+Parent="NetFront 3.4"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.4* NintendoBrowser/*]
+Parent="NetFront 3.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 3.5
+
+[NetFront 3.5]
+Parent="DefaultProperties"
+Comment="Access NetFront 3.5"
+Browser="NetFront"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[Mozilla/4.0 (*) *NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[Mozilla/4.0 (*NetFront/3.5*)*]
+Parent="NetFront 3.5"
+
+[SAMSUNG* *NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SEC-* *NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/3.5*Safari/*]
+Parent="NetFront 3.5"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (*BREW*NetFront/3.5*]
+Parent="NetFront 3.5"
+Platform="Brew"
+Platform_Version="2.0"
+
+[Mozilla/4.0 (MobilePhone */*NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonC902/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonC905/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonJ10i2/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonK800i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonT715/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU10i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU1i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU1iv/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU5iv/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU5u/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonU8i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW350i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW350iv/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW580i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW595/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW705/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW760i/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW980/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[SonyEricssonW995/* Browser/NetFront/3.5*]
+Parent="NetFront 3.5"
+
+[Mozilla/5.0 (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) NX/3.5* NintendoBrowser/*]
+Parent="NetFront 3.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Zune
+
+[Microsoft Zune]
+Parent="DefaultProperties"
+Comment="Microsoft Zune"
+Browser="Microsoft Zune"
+Win32="true"
+isMobileDevice="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; Microsoft ZuneHD 4.*)]
+Parent="Microsoft Zune"
+Version="4.0"
+MajorVer=4
+
+[Mozilla/4.0 (compatible; ZuneHD 4.*)]
+Parent="Microsoft Zune"
+Version="4.0"
+MajorVer=4
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 4.0
+
+[NetFront 4.0]
+Parent="DefaultProperties"
+Comment="Access NetFront 4.0"
+Browser="NetFront"
+Version="4.0"
+MajorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/4.0*]
+Parent="NetFront 4.0"
+
+[Mozilla/4.0 (*) *NetFront/4.0*]
+Parent="NetFront 4.0"
+
+[Mozilla/4.0 (*NetFront/4.0*)*]
+Parent="NetFront 4.0"
+
+[SAMSUNG* *NetFront/4.0*]
+Parent="NetFront 4.0"
+
+[SEC-* *NetFront/4.0*]
+Parent="NetFront 4.0"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.0* Kindle/1.0 (screen 600x800)]
+Parent="NetFront 4.0"
+Platform="Android"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.0* Kindle/2.0 (screen 600x800)]
+Parent="NetFront 4.0"
+Platform="Android"
+
+[SonyEricsson*; Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.0* *Safari/*]
+Parent="NetFront 4.0"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (Sample; MFC Simulator/4.0*; like Gecko) NetFront/4.0*]
+Parent="NetFront 4.0"
+
+[SAMSUNG-GT-C3310/* NetFront/4.0*]
+Parent="NetFront 4.0"
+Platform="JAVA"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 4.1
+
+[NetFront 4.1]
+Parent="DefaultProperties"
+Comment="Access NetFront 4.1"
+Browser="NetFront"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/4.1*]
+Parent="NetFront 4.1"
+
+[Mozilla/4.0 (*) *NetFront/4.1*]
+Parent="NetFront 4.1"
+
+[Mozilla/4.0 (*NetFront/4.1*)*]
+Parent="NetFront 4.1"
+
+[SAMSUNG* *NetFront/4.1*]
+Parent="NetFront 4.1"
+
+[SEC-* *NetFront/4.1*]
+Parent="NetFront 4.1"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.1* Kindle/1.0 (screen 600x800)]
+Parent="NetFront 4.1"
+Platform="Android"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.1* Kindle/2.0 (screen 600x800)]
+Parent="NetFront 4.1"
+Platform="Android"
+
+[SonyEricsson*; Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.1* *Safari/*]
+Parent="NetFront 4.1"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (Sample; MFC Simulator/4.1*; like Gecko) NetFront/4.1*]
+Parent="NetFront 4.1"
+
+[SAMSUNG-GT-C3310/* NetFront/4.1*]
+Parent="NetFront 4.1"
+Platform="JAVA"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront 4.2
+
+[NetFront 4.2]
+Parent="DefaultProperties"
+Comment="Access NetFront 4.2"
+Browser="NetFront"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/4.2*]
+Parent="NetFront 4.2"
+
+[Mozilla/4.0 (*) *NetFront/4.2*]
+Parent="NetFront 4.2"
+
+[Mozilla/4.0 (*NetFront/4.2*)*]
+Parent="NetFront 4.2"
+
+[SAMSUNG* *NetFront/4.2*]
+Parent="NetFront 4.2"
+
+[SEC-* *NetFront/4.2*]
+Parent="NetFront 4.2"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.2* Kindle/1.0 (screen 600x800)]
+Parent="NetFront 4.2"
+Platform="Android"
+
+[Mozilla/4.0 (compatible; Linux*) NetFront/4.2* Kindle/2.0 (screen 600x800)]
+Parent="NetFront 4.2"
+Platform="Android"
+
+[SonyEricsson*; Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/4.2* *Safari/*]
+Parent="NetFront 4.2"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (Sample; MFC Simulator/4.2*; like Gecko) NetFront/4.2*]
+Parent="NetFront 4.2"
+
+[SAMSUNG-GT-C3310/* NetFront/4.2*]
+Parent="NetFront 4.2"
+Platform="JAVA"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Access NetFront Generic
+
+[NetFront Generic]
+Parent="DefaultProperties"
+Comment="Access NetFront Generic"
+Browser="NetFront"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[*NetFront/*]
+Parent="NetFront Generic"
+
+[Mozilla/4.0 (*) *NetFront/*]
+Parent="NetFront Generic"
+
+[Mozilla/4.0 (*NetFront/*)*]
+Parent="NetFront Generic"
+
+[SAMSUNG* *NetFront/*]
+Parent="NetFront Generic"
+
+[SEC-* *NetFront/*]
+Parent="NetFront Generic"
+
+[SonyEricsson*/* Mozilla/5.0 (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) *Version/*Safari/*]
+Parent="NetFront Generic"
+Platform="SymbianOS"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nintendo
+
+[Nintendo]
+Parent="DefaultProperties"
+Comment="Nintendo"
+Browser="Nintendo"
+isMobileDevice="true"
+
+[Nintendo Wii*]
+Parent="Nintendo"
+Browser="Nintendo Wii"
+
+[Opera/* (Nintendo DSi; Opera/*; *; *)]
+Parent="Nintendo"
+Comment="Nintendo DSi"
+Browser="DSi"
+
+[Mozilla/* (Nintendo WiiU) AppleWebKit/* (KHTML, like Gecko) *]
+Parent="Nintendo"
+
+[Mozilla/* (Nintendo 3DS; *) Version/*]
+Parent="Nintendo"
+Comment="Nintendo 3DS"
+Browser="Nintendo 3DS Internet Browser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Media Player
+
+[Windows Media Player]
+Parent="DefaultProperties"
+Comment="Windows Media Player"
+Browser="Windows Media Player"
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[NSPlayer/4.*]
+Parent="Windows Media Player"
+Version="4.0"
+MajorVer=4
+
+[NSPlayer/7.*]
+Parent="Windows Media Player"
+Version="7.0"
+MajorVer=7
+
+[NSPlayer/07.*]
+Parent="Windows Media Player"
+Version="7.0"
+MajorVer=7
+
+[NSPlayer/8.*]
+Parent="Windows Media Player"
+Version="8.0"
+MajorVer=8
+
+[NSPlayer/9.*]
+Parent="Windows Media Player"
+Version="9.0"
+MajorVer=9
+
+[NSPlayer/10.*]
+Parent="Windows Media Player"
+Version="10.0"
+MajorVer=10
+
+[NSPlayer/11.*]
+Parent="Windows Media Player"
+Version="11.0"
+MajorVer=11
+
+[NSPlayer/12.*]
+Parent="Windows Media Player"
+Version="12.0"
+MajorVer=12
+
+[Windows-Media-Player/7.*]
+Parent="Windows Media Player"
+Version="7.0"
+MajorVer=7
+
+[Windows-Media-Player/8.*]
+Parent="Windows Media Player"
+Version="8.0"
+MajorVer=8
+
+[Windows-Media-Player/9.*]
+Parent="Windows Media Player"
+Version="9.0"
+MajorVer=9
+
+[Windows-Media-Player/10.*]
+Parent="Windows Media Player"
+Version="10.0"
+MajorVer=10
+
+[Windows-Media-Player/11.*]
+Parent="Windows Media Player"
+Version="11.0"
+MajorVer=11
+
+[Windows-Media-Player/12.*]
+Parent="Windows Media Player"
+Version="12.0"
+MajorVer=12
+
+[wget]
+Parent="General Crawlers"
+Comment="wget"
+Browser="wget"
+Crawler="true"
+
+[Wget/1.10* (*Linux*)*]
+Parent="wget"
+Version="1.10"
+MajorVer=1
+MinorVer=10
+Platform="Linux"
+
+[Wget/1.10*]
+Parent="wget"
+Version="1.10"
+MajorVer=1
+MinorVer=10
+
+[Wget/1.11* (*Linux*)*]
+Parent="wget"
+Version="1.11"
+MajorVer=1
+MinorVer=11
+Platform="Linux"
+
+[Wget/1.11*]
+Parent="wget"
+Version="1.11"
+MajorVer=1
+MinorVer=11
+
+[Wget/1.12* (*Linux*)*]
+Parent="wget"
+Version="1.12"
+MajorVer=1
+MinorVer=12
+Platform="Linux"
+
+[Wget/1.12*]
+Parent="wget"
+Version="1.12"
+MajorVer=1
+MinorVer=12
+
+[Wget/1.13* (*Linux*)*]
+Parent="wget"
+Version="1.13"
+MajorVer=1
+MinorVer=13
+Platform="Linux"
+
+[Wget/1.13*]
+Parent="wget"
+Version="1.13"
+MajorVer=1
+MinorVer=13
+
+[Wget/1.* (*Linux*)*]
+Parent="wget"
+Version="1.0"
+MajorVer=1
+Platform="Linux"
+
+[Wget/1.*]
+Parent="wget"
+Version="1.0"
+MajorVer=1
+
+[Wget*]
+Parent="wget"
+
+[WI Job Roboter]
+Parent="General Crawlers"
+Comment="WI Job Roboter"
+Browser="WI Job Roboter"
+Crawler="true"
+
+[Mozilla/5.0 (compatible;WI Job Roboter Spider Version 3*]
+Parent="WI Job Roboter"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (compatible;WI Job Roboter Spider*]
+Parent="WI Job Roboter"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 5.0
+
+[QuickTime 5.0]
+Parent="DefaultProperties"
+Comment="QuickTime 5.0"
+Browser="QuickTime"
+Version="5.0"
+MajorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=5.0*os=Mac 10.*)]
+Parent="QuickTime 5.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=5.0*os=Mac 9.*)]
+Parent="QuickTime 5.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=5.0*os=Windows Me*)]
+Parent="QuickTime 5.0"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=5.0*os=*Windows 95*)]
+Parent="QuickTime 5.0"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=5.0*os=*Windows 98*)]
+Parent="QuickTime 5.0"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=5.0*os=*Windows NT 4.0*)]
+Parent="QuickTime 5.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=5.0*os=*Windows NT 5.0*)]
+Parent="QuickTime 5.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=5.0*os=*Windows NT 5.1*)]
+Parent="QuickTime 5.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=5.0*os=*Windows NT 5.2*)]
+Parent="QuickTime 5.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=5.0*os=*Windows NT 6.0*)]
+Parent="QuickTime 5.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=5.0*os=*Windows NT 6.1*)]
+Parent="QuickTime 5.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 6.0
+
+[QuickTime 6.0]
+Parent="DefaultProperties"
+Comment="QuickTime 6.0"
+Browser="QuickTime"
+Version="6.0"
+MajorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=6.0*os=Mac 10.*)]
+Parent="QuickTime 6.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=6.0*os=Mac 9.*)]
+Parent="QuickTime 6.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=6.0*os=Windows Me*)]
+Parent="QuickTime 6.0"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=6.0*os=*Windows 95*)]
+Parent="QuickTime 6.0"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=6.0*os=*Windows 98*)]
+Parent="QuickTime 6.0"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=6.0*os=*Windows NT 4.0*)]
+Parent="QuickTime 6.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=6.0*os=*Windows NT 5.0*)]
+Parent="QuickTime 6.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=6.0*os=*Windows NT 5.1*)]
+Parent="QuickTime 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=6.0*os=*Windows NT 5.2*)]
+Parent="QuickTime 6.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=6.0*os=*Windows NT 6.0*)]
+Parent="QuickTime 6.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=6.0*os=*Windows NT 6.1*)]
+Parent="QuickTime 6.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.0
+
+[QuickTime 7.0]
+Parent="DefaultProperties"
+Comment="QuickTime 7.0"
+Browser="QuickTime"
+Version="7.0"
+MajorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.0*os=Mac 10.*)]
+Parent="QuickTime 7.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.0*os=Mac 9.*)]
+Parent="QuickTime 7.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.0*os=Windows Me*)]
+Parent="QuickTime 7.0"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.0*os=*Windows 95*)]
+Parent="QuickTime 7.0"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.0*os=*Windows 98*)]
+Parent="QuickTime 7.0"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.0*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.0*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.0*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.0*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.0*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.0*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.1
+
+[QuickTime 7.1]
+Parent="DefaultProperties"
+Comment="QuickTime 7.1"
+Browser="QuickTime"
+Version="7.1"
+MajorVer=7
+MinorVer=1
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.1*os=Mac 10.*)]
+Parent="QuickTime 7.1"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.1*os=Mac 9.*)]
+Parent="QuickTime 7.1"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.1*os=Windows Me*)]
+Parent="QuickTime 7.1"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.1*os=*Windows 95*)]
+Parent="QuickTime 7.1"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.1*os=*Windows 98*)]
+Parent="QuickTime 7.1"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.1*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.1"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.1*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.1"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.1*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.1"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.1*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.1"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.1*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.1"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.1*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.1"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.2
+
+[QuickTime 7.2]
+Parent="DefaultProperties"
+Comment="QuickTime 7.2"
+Browser="QuickTime"
+Version="7.2"
+MajorVer=7
+MinorVer=2
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.2*os=Mac 10.*)]
+Parent="QuickTime 7.2"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.2*os=Mac 9.*)]
+Parent="QuickTime 7.2"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.2*os=Windows Me*)]
+Parent="QuickTime 7.2"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.2*os=*Windows 95*)]
+Parent="QuickTime 7.2"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.2*os=*Windows 98*)]
+Parent="QuickTime 7.2"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.2*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.2"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.2*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.2"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.2*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.2"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.2*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.2"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.2*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.2"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.2*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.2"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.3
+
+[QuickTime 7.3]
+Parent="DefaultProperties"
+Comment="QuickTime 7.3"
+Browser="QuickTime"
+Version="7.3"
+MajorVer=7
+MinorVer=3
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.3*os=Mac 10.*)]
+Parent="QuickTime 7.3"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.3*os=Mac 9.*)]
+Parent="QuickTime 7.3"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.3*os=Windows Me*)]
+Parent="QuickTime 7.3"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.3*os=*Windows 95*)]
+Parent="QuickTime 7.3"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.3*os=*Windows 98*)]
+Parent="QuickTime 7.3"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.3*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.3"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.3*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.3"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.3*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.3"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.3*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.3"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.3*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.3"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.3*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.3"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.4
+
+[QuickTime 7.4]
+Parent="DefaultProperties"
+Comment="QuickTime 7.4"
+Browser="QuickTime"
+Version="7.4"
+MajorVer=7
+MinorVer=4
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.4*os=Mac 10.*)]
+Parent="QuickTime 7.4"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.4*os=Mac 9.*)]
+Parent="QuickTime 7.4"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.4*os=Windows Me*)]
+Parent="QuickTime 7.4"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.4*os=*Windows 95*)]
+Parent="QuickTime 7.4"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.4*os=*Windows 98*)]
+Parent="QuickTime 7.4"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.4*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.4"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.4*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.4"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.4*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.4"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.4*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.4"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.4*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.4"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.4*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.4"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.5
+
+[QuickTime 7.5]
+Parent="DefaultProperties"
+Comment="QuickTime 7.5"
+Browser="QuickTime"
+Version="7.5"
+MajorVer=7
+MinorVer=5
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.5*os=Mac 10.*)]
+Parent="QuickTime 7.5"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.5*os=Mac 9.*)]
+Parent="QuickTime 7.5"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.5*os=Windows Me*)]
+Parent="QuickTime 7.5"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.5*os=*Windows 95*)]
+Parent="QuickTime 7.5"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.5*os=*Windows 98*)]
+Parent="QuickTime 7.5"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.5*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.5"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.5*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.5"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.5*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.5"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.5*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.5"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.5*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.5"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.5*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.5"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.6
+
+[QuickTime 7.6]
+Parent="DefaultProperties"
+Comment="QuickTime 7.6"
+Browser="QuickTime"
+Version="7.6"
+MajorVer=7
+MinorVer=6
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.6*os=Mac 10.*)]
+Parent="QuickTime 7.6"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.6*os=Mac 9.*)]
+Parent="QuickTime 7.6"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.6*os=Windows Me*)]
+Parent="QuickTime 7.6"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.6*os=*Windows 95*)]
+Parent="QuickTime 7.6"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.6*os=*Windows 98*)]
+Parent="QuickTime 7.6"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.6*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.6"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.6*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.6"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.6*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.6"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.6*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.6"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.6*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.6"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.6*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.6"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 7.7
+
+[QuickTime 7.7]
+Parent="DefaultProperties"
+Comment="QuickTime 7.7"
+Browser="QuickTime"
+Version="7.7"
+MajorVer=7
+MinorVer=7
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=7.7*os=Mac 10.*)]
+Parent="QuickTime 7.7"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.7*os=Mac 9.*)]
+Parent="QuickTime 7.7"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=7.7*os=Windows Me*)]
+Parent="QuickTime 7.7"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=7.7*os=*Windows 95*)]
+Parent="QuickTime 7.7"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=7.7*os=*Windows 98*)]
+Parent="QuickTime 7.7"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=7.7*os=*Windows NT 4.0*)]
+Parent="QuickTime 7.7"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=7.7*os=*Windows NT 5.0*)]
+Parent="QuickTime 7.7"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=7.7*os=*Windows NT 5.1*)]
+Parent="QuickTime 7.7"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=7.7*os=*Windows NT 5.2*)]
+Parent="QuickTime 7.7"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=7.7*os=*Windows NT 6.0*)]
+Parent="QuickTime 7.7"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=7.7*os=*Windows NT 6.1*)]
+Parent="QuickTime 7.7"
+Platform="Win7"
+Platform_Version="6.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; QuickTime 10.0
+
+[QuickTime 10.0]
+Parent="DefaultProperties"
+Comment="QuickTime 10.0"
+Browser="QuickTime"
+Version="10.0"
+MajorVer=10
+Win32="true"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+
+[QuickTime*(qtver=10.0*os=Mac 10.*)]
+Parent="QuickTime 10.0"
+Platform="MacOSX"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=10.0*os=Mac 9.*)]
+Parent="QuickTime 10.0"
+Platform="MacPPC"
+Platform_Version=10
+Win32="false"
+
+[QuickTime*(qtver=10.0*os=Windows Me*)]
+Parent="QuickTime 10.0"
+Platform="WinME"
+Platform_Version=ME
+
+[QuickTime*(qtver=10.0*os=*Windows 95*)]
+Parent="QuickTime 10.0"
+Platform="Win95"
+Platform_Version=95
+
+[QuickTime*(qtver=10.0*os=*Windows 98*)]
+Parent="QuickTime 10.0"
+Platform="Win98"
+Platform_Version=98
+
+[QuickTime*(qtver=10.0*os=*Windows NT 4.0*)]
+Parent="QuickTime 10.0"
+Platform="WinNT"
+Platform_Version="4.0"
+
+[QuickTime*(qtver=10.0*os=*Windows NT 5.0*)]
+Parent="QuickTime 10.0"
+Platform="Win2000"
+Platform_Version="5.0"
+
+[QuickTime*(qtver=10.0*os=*Windows NT 5.1*)]
+Parent="QuickTime 10.0"
+Platform="WinXP"
+Platform_Version="5.1"
+
+[QuickTime*(qtver=10.0*os=*Windows NT 5.2*)]
+Parent="QuickTime 10.0"
+Platform="WinXP"
+Platform_Version="5.2"
+
+[QuickTime*(qtver=10.0*os=*Windows NT 6.0*)]
+Parent="QuickTime 10.0"
+Platform="WinVista"
+Platform_Version="6.0"
+
+[QuickTime*(qtver=10.0*os=*Windows NT 6.1*)]
+Parent="QuickTime 10.0"
+Platform="Win7"
+Platform_Version="6.1"
+
+[Xerka WebBot]
+Parent="General Crawlers"
+Comment="Xerka"
+Browser="Xerka"
+Crawler="true"
+
+[Xerka WebBot*]
+Parent="Xerka WebBot"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; YandexBlog
+
+[YandexBlog]
+Parent="DefaultProperties"
+Comment="YandexBlog"
+Browser="YandexBlog"
+Frames="true"
+IFrames="true"
+Tables="true"
+isSyndicationReader="true"
+Crawler="true"
+
+[Mozilla/5.0 (compatible; YandexBlogs/*; robot)]
+Parent="YandexBlog"
+
+[YandexBlog/*]
+Parent="YandexBlog"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 4.5
+
+[Lotus Notes 4.5]
+Parent="DefaultProperties"
+Comment="Lotus Notes 4.5"
+Browser="Lotus Notes"
+Version="4.5"
+MajorVer=4
+MinorVer=5
+
+[Lotus-Notes/4.5 ( Windows-NT )]
+Parent="Lotus Notes 4.5"
+Platform="WinNT"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 5.0
+
+[Lotus Notes 5.0]
+Parent="DefaultProperties"
+Comment="Lotus Notes 5.0"
+Browser="Lotus Notes"
+Version="5.0"
+MajorVer=5
+
+[Mozilla/4.0 (compatible; Lotus-Notes/5.0; Macintosh PPC)]
+Parent="Lotus Notes 5.0"
+Platform="MacPPC"
+Platform_Version=10
+
+[Mozilla/4.0 (compatible; Lotus-Notes/5.0; Windows-NT)]
+Parent="Lotus Notes 5.0"
+Platform="WinNT"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes 6.0
+
+[Lotus Notes 6.0]
+Parent="DefaultProperties"
+Comment="Lotus Notes 6.0"
+Browser="Lotus Notes"
+Version="6.0"
+MajorVer=6
+
+[Mozilla/4.0 (compatible; Lotus-Notes/6.0; Windows-NT)]
+Parent="Lotus Notes 6.0"
+Platform="WinNT"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2007
+
+[Microsoft Outlook 2007]
+Parent="DefaultProperties"
+Comment="Microsoft Outlook 2007"
+Browser="Microsoft Outlook"
+Version=2007
+MajorVer=2007
+Frames="true"
+Tables="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/4.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/5.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/6.0; *MSOffice 12)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Microsoft Office/12.0 (*Windows NT 5.1*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Microsoft Office/12.0 (*Windows NT 5.2*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Microsoft Office/12.0 (*Windows NT 5.2;*Win64? x64*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.0;*Win64? x64*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.0*WOW64*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.0*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.1*Win64? x64*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.1*WOW64*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/12.0 (*Windows NT 6.1*; Microsoft Office Outlook 12.*)]
+Parent="Microsoft Outlook 2007"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2010
+
+[Microsoft Outlook 2010]
+Parent="DefaultProperties"
+Comment="Microsoft Outlook 2010"
+Browser="Microsoft Outlook"
+Version=2010
+MajorVer=2010
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*WOW64*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*WOW64*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/4.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*WOW64*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/5.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*WOW64*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/6.0; *MSOffice 14)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 5.1*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 5.2*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 5.2;*Win64? x64*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.0;*Win64? x64*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.0*WOW64*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.0*)]
+Parent="Microsoft Outlook 2010"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.1*Win64? x64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.1*WOW64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.1*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.2*Win64? x64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.2*WOW64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.2*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.3*Win64? x64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.3*WOW64*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Microsoft Office/14.0 (*Windows NT 6.3*)]
+Parent="Microsoft Outlook 2010"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook 2013
+
+[Microsoft Outlook 2013]
+Parent="DefaultProperties"
+Comment="Microsoft Outlook 2013"
+Browser="Microsoft Outlook"
+Version=2013
+MajorVer=2013
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+VBScript="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*WOW64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/4.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*WOW64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/5.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*WOW64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/6.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*WOW64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Trident/7.0; *MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*WOW64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*Win64? x64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*WOW64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.2*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*Win64? x64*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.3*MSOffice 15)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.1*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2;*Win64? x64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2*WOW64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0;*Win64? x64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0*WOW64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*Win64? x64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*WOW64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*Win64? x64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*WOW64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.3*Win64? x64*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.3*; Microsoft Outlook 15.*MSOffice 15*)*]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.1*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2;*Win64? x64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2*WOW64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 5.2*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0;*Win64? x64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0*WOW64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.0*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*Win64? x64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*WOW64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.1*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*Win64? x64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*WOW64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.2*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.3*Win64? x64*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Microsoft Office/15.0 (*Windows NT 6.3*; Microsoft Outlook 15.*; Pro)]
+Parent="Microsoft Outlook 2013"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Microsoft Office Mobile/15.0]
+Parent="Microsoft Outlook 2013"
+isMobileDevice="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.0
+
+[Airmail 1.0]
+Parent="DefaultProperties"
+Comment="Airmail 1.0"
+Browser="Airmail"
+Version="1.0"
+MajorVer=1
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.0* (*Mac OS X 10.8*]
+Parent="Airmail 1.0"
+Platform_Version="10.8"
+
+[Airmail 1.0* (*Mac OS X 10.9*]
+Parent="Airmail 1.0"
+Platform_Version="10.9"
+
+[Airmail 1.0* (*Mac OS X 10.10*]
+Parent="Airmail 1.0"
+Platform_Version="10.10"
+
+[Airmail 1.0* (*Mac OS X*]
+Parent="Airmail 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.1
+
+[Airmail 1.1]
+Parent="DefaultProperties"
+Comment="Airmail 1.1"
+Browser="Airmail"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.1* (*Mac OS X 10.8*]
+Parent="Airmail 1.1"
+Platform_Version="10.8"
+
+[Airmail 1.1* (*Mac OS X 10.9*]
+Parent="Airmail 1.1"
+Platform_Version="10.9"
+
+[Airmail 1.1* (*Mac OS X 10.10*]
+Parent="Airmail 1.1"
+Platform_Version="10.10"
+
+[Airmail 1.1* (*Mac OS X*]
+Parent="Airmail 1.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.2
+
+[Airmail 1.2]
+Parent="DefaultProperties"
+Comment="Airmail 1.2"
+Browser="Airmail"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.2* (*Mac OS X 10.8*]
+Parent="Airmail 1.2"
+Platform_Version="10.8"
+
+[Airmail 1.2* (*Mac OS X 10.9*]
+Parent="Airmail 1.2"
+Platform_Version="10.9"
+
+[Airmail 1.2* (*Mac OS X 10.10*]
+Parent="Airmail 1.2"
+Platform_Version="10.10"
+
+[Airmail 1.2* (*Mac OS X*]
+Parent="Airmail 1.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.3
+
+[Airmail 1.3]
+Parent="DefaultProperties"
+Comment="Airmail 1.3"
+Browser="Airmail"
+Version="1.3"
+MajorVer=1
+MinorVer=3
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.3* (*Mac OS X 10.8*]
+Parent="Airmail 1.3"
+Platform_Version="10.8"
+
+[Airmail 1.3* (*Mac OS X 10.9*]
+Parent="Airmail 1.3"
+Platform_Version="10.9"
+
+[Airmail 1.3* (*Mac OS X 10.10*]
+Parent="Airmail 1.3"
+Platform_Version="10.10"
+
+[Airmail 1.3* (*Mac OS X*]
+Parent="Airmail 1.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.4
+
+[Airmail 1.4]
+Parent="DefaultProperties"
+Comment="Airmail 1.4"
+Browser="Airmail"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.4* (*Mac OS X 10.8*]
+Parent="Airmail 1.4"
+Platform_Version="10.8"
+
+[Airmail 1.4* (*Mac OS X 10.9*]
+Parent="Airmail 1.4"
+Platform_Version="10.9"
+
+[Airmail 1.4* (*Mac OS X 10.10*]
+Parent="Airmail 1.4"
+Platform_Version="10.10"
+
+[Airmail 1.4* (*Mac OS X*]
+Parent="Airmail 1.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Airmail 1.5
+
+[Airmail 1.5]
+Parent="DefaultProperties"
+Comment="Airmail 1.5"
+Browser="Airmail"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Platform="MacOSX"
+Platform_Version=10
+
+[Airmail 1.5* (*Mac OS X 10.8*]
+Parent="Airmail 1.5"
+Platform_Version="10.8"
+
+[Airmail 1.5* (*Mac OS X 10.9*]
+Parent="Airmail 1.5"
+Platform_Version="10.9"
+
+[Airmail 1.5* (*Mac OS X 10.10*]
+Parent="Airmail 1.5"
+Platform_Version="10.10"
+
+[Airmail 1.5* (*Mac OS X*]
+Parent="Airmail 1.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Windows Live Mail
+
+[Windows Live Mail]
+Parent="DefaultProperties"
+Comment="Windows Live Mail"
+Browser="Windows Live Mail"
+Version="7.0"
+MajorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+BackgroundSounds="true"
+JavaScript="true"
+CssVersion=2
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 5.1*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 5.2*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.0*WOW64*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.0*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.1*WOW64*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.1*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.2*WOW64*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.2*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.3*WOW64*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows NT 6.3*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE 7.0;*Windows*Trident/4.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 5.1*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 5.2*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.0*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.0*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.1*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.2*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows NT 6.3*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (MSIE ?.0;*Windows*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 5.1*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*WOW64*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows*Trident/5.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 5.1*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*WOW64*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows*Trident/6.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 5.1*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*WOW64*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows*Trident/7.0*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 5.1*]
+Parent="Windows Live Mail"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*WOW64*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.0*]
+Parent="Windows Live Mail"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*WOW64*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.1*]
+Parent="Windows Live Mail"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*WOW64*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.2*]
+Parent="Windows Live Mail"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*WOW64*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Outlook-Express/7.0 (*Windows NT 6.3*]
+Parent="Windows Live Mail"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Outlook-Express/7.0 (*Windows*]
+Parent="Windows Live Mail"
+Platform="Win32"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; KMail2 4.14
+
+[KMail2 4.14]
+Parent="DefaultProperties"
+Comment="KMail2 4.14"
+Browser="KMail2"
+Version="4.14"
+MajorVer=4
+MinorVer=14
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) kmail2/4.14* Safari/*]
+Parent="KMail2 4.14"
+Platform="Linux"
+Platform_Version=unknown
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) kmail2/4.14* Safari/*]
+Parent="KMail2 4.14"
+Platform="Linux"
+Platform_Version=unknown
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) kmail2/4.14* Safari/*]
+Parent="KMail2 4.14"
+Platform="Linux"
+Platform_Version=unknown
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Incredimail 1.0
+
+[Incredimail 1.0]
+Parent="DefaultProperties"
+Comment="Incredimail 1.0"
+Browser="Incredimail"
+Version="1.0"
+MajorVer=1
+isMobileDevice="true"
+
+[Incredimail 1.0* (*iPhone OS?6?1*]
+Parent="Incredimail 1.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[Incredimail 1.0* (*iPhone OS*]
+Parent="Incredimail 1.0"
+Platform="iOS"
+
+[Incredimail 1.0* (iPad; *iPhone OS?6?1*]
+Parent="Incredimail 1.0"
+Platform="iOS"
+Platform_Version="6.1"
+isTablet="true"
+
+[Incredimail 1.0* (iPad; *iPhone OS*]
+Parent="Incredimail 1.0"
+Platform="iOS"
+isTablet="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Barca Mail Clint
+
+[Barca Mail Clint]
+Parent="DefaultProperties"
+Comment="Barca Mail Clint"
+Browser="Barca Mail Clint"
+Platform="MacOSX"
+Platform_Version=10
+
+[Barca/1.4*]
+Parent="Barca Mail Clint"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+
+[Barca/2.0*]
+Parent="Barca Mail Clint"
+Version="2.0"
+MajorVer=2
+
+[Barca/2.8*]
+Parent="Barca Mail Clint"
+Version="2.8"
+MajorVer=2
+MinorVer=8
+
+[BarcaPro/2.8*]
+Parent="Barca Mail Clint"
+Version="2.8"
+MajorVer=2
+MinorVer=8
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Lotus Notes Generic
+
+[Lotus Notes Generic]
+Parent="DefaultProperties"
+Comment="Lotus Notes Generic"
+Browser="Lotus Notes"
+
+[Mozilla/4.0 (compatible; Lotus-Notes/*; Macintosh PPC)]
+Parent="Lotus Notes Generic"
+Platform="MacPPC"
+Platform_Version=10
+
+[Mozilla/4.0 (compatible; Lotus-Notes/*]
+Parent="Lotus Notes Generic"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Brew
+
+[Brew]
+Parent="DefaultProperties"
+Comment="Brew"
+Browser="Brew"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[*-*/1.0 BREW/2.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
+Parent="Brew"
+Version="2.0"
+MajorVer=2
+CssVersion=1
+
+[*-*/1.0 BREW/2.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
+Parent="Brew"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+CssVersion=1
+
+[*-*/1.0 BREW/3.0* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
+Parent="Brew"
+Version="3.0"
+MajorVer=3
+CssVersion=1
+
+[*-*/1.0 BREW/3.1* Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1]
+Parent="Brew"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+CssVersion=1
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin 1.0
+
+[Dolfin 1.0]
+Parent="DefaultProperties"
+Comment="Dolfin 1.0"
+Browser="Dolfin"
+Version="1.0"
+MajorVer=1
+Platform="JAVA"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[SAMSUNG-GT-S5620/*Dolfin/1.0*MIDP*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-B7722/*Dolfin/1.0*MIDP*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-T528g/*Dolfin/1.0*MIDP*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-C3050*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-3210*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-B3310*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-B3410*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-B7610*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-E2550*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-I6410*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-I8320*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S3370*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S3650*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S5230*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S5560*?Dolfin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S5560*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-S7550*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-i8000*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-S8000*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-S8300*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-E250*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-F480*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-G800*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-U700*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-U900*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-i900*?Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-GT-*Dolfin/1.0*MIDP*]
+Parent="Dolfin 1.0"
+
+[SAMSUNG-SGH-*Dolfin/1.0*MIDP*]
+Parent="Dolfin 1.0"
+
+[Samsung-* Dolphin/1.0*]
+Parent="Dolfin 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin 1.5
+
+[Dolfin 1.5]
+Parent="DefaultProperties"
+Comment="Dolfin 1.5"
+Browser="Dolfin"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Platform="JAVA"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[SAMSUNG-GT-S5620/*Dolfin/1.5*MIDP*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-B7722/*Dolfin/1.5*MIDP*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-T528g/*Dolfin/1.5*MIDP*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-C3050*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-3210*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-B3310*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-B3410*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-B7610*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-E2550*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-I6410*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-I8320*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S3370*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S3650*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S5230*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S5560*?Dolfin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S5560*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-S7550*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-i8000*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-S8000*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-S8300*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-E250*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-F480*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-G800*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-U700*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-U900*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-i900*?Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-GT-*Dolfin/1.5*MIDP*]
+Parent="Dolfin 1.5"
+
+[SAMSUNG-SGH-*Dolfin/1.5*MIDP*]
+Parent="Dolfin 1.5"
+
+[Samsung-* Dolphin/1.5*]
+Parent="Dolfin 1.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin 2.0
+
+[Dolfin 2.0]
+Parent="DefaultProperties"
+Comment="Dolfin 2.0"
+Browser="Dolfin"
+Version="2.0"
+MajorVer=2
+Platform="Bada"
+Platform_Version="1.0"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[SAMSUNG-GT-C6712* Dolfin/2.0*MIDP*]
+Parent="Dolfin 2.0"
+Platform="JAVA"
+Platform_Version=unknown
+
+[SAMSUNG-GT-C6712* Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S5250*Bada/1.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S5330*Bada/1.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S7230E-VODAFONE*Bada/1.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S7230E*Bada/1.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500-VODAFONE*Bada/1.* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500*Bada/1.* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500L*Bada/1.* (KHTML,*like Gecko*) Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[SAMSUNG-GT-B2710/* SHP/VPP/R5 Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[SAMSUNG-GT-S5260/* Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG*SAMSUNG-GT-S*Bada/1.*)*AppleWebKit/*(*KHTML, like Gecko*)*Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[Mozilla/5.0 (SAMSUNG*SAMSUNG-GT-S*)*AppleWebKit/*(*KHTML, like Gecko*)*Dolfin/2.0*MIDP*]
+Parent="Dolfin 2.0"
+Platform="JAVA"
+Platform_Version=unknown
+
+[Samsung-* Dolphin/2.0*]
+Parent="Dolfin 2.0"
+
+[Samsung-* Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+[SAMSUNG-* Dolfin/2.0*]
+Parent="Dolfin 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin 2.2
+
+[Dolfin 2.2]
+Parent="DefaultProperties"
+Comment="Dolfin 2.2"
+Browser="Dolfin"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Bada"
+Platform_Version="1.2"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500*Bada/1.2*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.2*]
+Parent="Dolfin 2.2"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500*Bada/1.2* (KHTML,*like Gecko*) Dolfin/2.2*]
+Parent="Dolfin 2.2"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8530-VODAFONE*Bada/1.2*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.2*]
+Parent="Dolfin 2.2"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8530*Bada/1.2*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/2.2*]
+Parent="Dolfin 2.2"
+
+[Mozilla/5.0 (SAMSUNG*SAMSUNG-GT-S*Bada/1.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Dolfin/2.2*]
+Parent="Dolfin 2.2"
+
+[Samsung-* Dolphin/2.2*]
+Parent="Dolfin 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin 3.0
+
+[Dolfin 3.0]
+Parent="DefaultProperties"
+Comment="Dolfin 3.0"
+Browser="Dolfin"
+Version="3.0"
+MajorVer=3
+Platform="Bada"
+Platform_Version="2.0"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S5380*Bada/2.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/3.*]
+Parent="Dolfin 3.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8500*Bada/2.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/3.*]
+Parent="Dolfin 3.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8530*Bada/2.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/3.*]
+Parent="Dolfin 3.0"
+
+[Mozilla/5.0 (SAMSUNG; SAMSUNG-GT-S8600*Bada/2.*) AppleWebKit/* (KHTML,*like Gecko*) Dolfin/3.*]
+Parent="Dolfin 3.0"
+
+[Mozilla/5.0 (SAMSUNG*SAMSUNG-GT-S*Bada/2.*)*AppleWebKit/*(*KHTML, like Gecko*)*Dolfin/3.*]
+Parent="Dolfin 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Dolfin Android 1.0
+
+[Dolfin Android 1.0]
+Parent="DefaultProperties"
+Comment="Dolfin Android 1.0"
+Browser="Dolfin"
+Version="1.0"
+MajorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML, like Gecko) Dolphin/INT-1.0 *Safari/*]
+Parent="Dolfin Android 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 *) AppleWebKit/* (KHTML, like Gecko) Dolphin/INT-1.0 *Safari/*]
+Parent="Dolfin Android 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001 Build/*) AppleWebKit/* (KHTML, like Gecko) Dolphin/INT-1.0 *Safari/*]
+Parent="Dolfin Android 1.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Dolphin/INT-1.0 *Safari/*]
+Parent="Dolfin Android 1.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Dolphin/INT-1.0 *Safari/*]
+Parent="Dolfin Android 1.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.0
+
+[OneBrowser 3.0]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.0"
+Browser="OneBrowser"
+Version="3.0"
+MajorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+
+[OneBrowser/3.0?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.0"
+Platform="RIM OS"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.0?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+
+[OneBrowser/3.0?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="RIM OS"
+
+[OneBrowser/3.0*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.0*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.0*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.0*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.0*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.0*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="Android"
+
+[OneBrowser/3.0*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.0*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.0*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.0*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.0*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.0*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.0*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.0*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.0*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.0*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="iOS"
+
+[OneBrowser/3.0*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.0"
+Platform="RIM OS"
+
+[OneBrowser/3.0*]
+Parent="OneBrowser 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.1
+
+[OneBrowser 3.1]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.1"
+Browser="OneBrowser"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+
+[OneBrowser/3.1?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.1"
+Platform="RIM OS"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.1?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+
+[OneBrowser/3.1?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="RIM OS"
+
+[OneBrowser/3.1*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.1*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.1*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.1*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.1*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.1*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="Android"
+
+[OneBrowser/3.1*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.1*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.1*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.1*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.1*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.1*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.1*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.1*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.1*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.1*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="iOS"
+
+[OneBrowser/3.1*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.1"
+Platform="RIM OS"
+
+[OneBrowser/3.1*]
+Parent="OneBrowser 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.2
+
+[OneBrowser 3.2]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.2"
+Browser="OneBrowser"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+
+[OneBrowser/3.2?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.2"
+Platform="RIM OS"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.2?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+
+[OneBrowser/3.2?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="RIM OS"
+
+[OneBrowser/3.2*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.2*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.2*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.2*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.2*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.2*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="Android"
+
+[OneBrowser/3.2*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.2*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.2*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.2*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.2*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.2*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.2*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.2*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.2*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.2*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="iOS"
+
+[OneBrowser/3.2*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.2"
+Platform="RIM OS"
+
+[OneBrowser/3.2*]
+Parent="OneBrowser 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.3
+
+[OneBrowser 3.3]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.3"
+Browser="OneBrowser"
+Version="3.3"
+MajorVer=3
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+
+[OneBrowser/3.3?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.3"
+Platform="RIM OS"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.3?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+
+[OneBrowser/3.3?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="RIM OS"
+
+[OneBrowser/3.3*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.3*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.3*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.3*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.3*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.3*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="Android"
+
+[OneBrowser/3.3*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.3*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.3*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.3*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.3*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.3*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.3*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.3*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.3*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.3*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="iOS"
+
+[OneBrowser/3.3*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.3"
+Platform="RIM OS"
+
+[OneBrowser/3.3*]
+Parent="OneBrowser 3.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.4
+
+[OneBrowser 3.4]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.4"
+Browser="OneBrowser"
+Version="3.4"
+MajorVer=3
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+
+[OneBrowser/3.4?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.4"
+Platform="RIM OS"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.4?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+
+[OneBrowser/3.4?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="RIM OS"
+
+[OneBrowser/3.4*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.4*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.4*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.4*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.4*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.4*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="Android"
+
+[OneBrowser/3.4*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.4*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.4*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.4*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.4*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.4*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.4*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.4*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.4*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.4*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="iOS"
+
+[OneBrowser/3.4*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.4"
+Platform="RIM OS"
+
+[OneBrowser/3.4*]
+Parent="OneBrowser 3.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.5
+
+[OneBrowser 3.5]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.5"
+Browser="OneBrowser"
+Version="3.5"
+MajorVer=3
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+
+[OneBrowser/3.5?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.5"
+Platform="RIM OS"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.5?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+
+[OneBrowser/3.5?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="RIM OS"
+
+[OneBrowser/3.5*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.5*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.5*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.5*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.5*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.5*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="Android"
+
+[OneBrowser/3.5*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.5*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.5*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.5*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.5*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.5*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.5*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.5*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.5*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.5*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="iOS"
+
+[OneBrowser/3.5*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.5"
+Platform="RIM OS"
+
+[OneBrowser/3.5*]
+Parent="OneBrowser 3.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.6
+
+[OneBrowser 3.6]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.6"
+Browser="OneBrowser"
+Version="3.6"
+MajorVer=3
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+
+[OneBrowser/3.6?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.6"
+Platform="RIM OS"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.6?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+
+[OneBrowser/3.6?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="RIM OS"
+
+[OneBrowser/3.6*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.6*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.6*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.6*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.6*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.6*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="Android"
+
+[OneBrowser/3.6*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.6*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.6*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.6*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.6*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.6*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.6*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.6*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.6*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.6*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="iOS"
+
+[OneBrowser/3.6*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.6"
+Platform="RIM OS"
+
+[OneBrowser/3.6*]
+Parent="OneBrowser 3.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.7
+
+[OneBrowser 3.7]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.7"
+Browser="OneBrowser"
+Version="3.7"
+MajorVer=3
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+
+[OneBrowser/3.7?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.7"
+Platform="RIM OS"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.7?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+
+[OneBrowser/3.7?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="RIM OS"
+
+[OneBrowser/3.7*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.7*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.7*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.7*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.7*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.7*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="Android"
+
+[OneBrowser/3.7*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.7*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.7*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.7*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.7*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.7*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.7*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.7*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.7*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.7*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="iOS"
+
+[OneBrowser/3.7*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.7"
+Platform="RIM OS"
+
+[OneBrowser/3.7*]
+Parent="OneBrowser 3.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 3.8
+
+[OneBrowser 3.8]
+Parent="DefaultProperties"
+Comment="OneBrowser 3.8"
+Browser="OneBrowser"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+
+[OneBrowser/3.8?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 3.8"
+Platform="RIM OS"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.8?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+
+[OneBrowser/3.8?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="RIM OS"
+
+[OneBrowser/3.8*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/3.8*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/3.8*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/3.8*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/3.8*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/3.8*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="Android"
+
+[OneBrowser/3.8*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/3.8*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/3.8*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/3.8*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/3.8*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/3.8*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/3.8*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/3.8*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/3.8*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/3.8*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="iOS"
+
+[OneBrowser/3.8*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 3.8"
+Platform="RIM OS"
+
+[OneBrowser/3.8*]
+Parent="OneBrowser 3.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 4.0
+
+[OneBrowser 4.0]
+Parent="DefaultProperties"
+Comment="OneBrowser 4.0"
+Browser="OneBrowser"
+Version="4.0"
+MajorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+
+[OneBrowser/4.0?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.0"
+Platform="RIM OS"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.0?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+
+[OneBrowser/4.0?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="RIM OS"
+
+[OneBrowser/4.0*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.0*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.0*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.0*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.0*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.0*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="Android"
+
+[OneBrowser/4.0*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.0*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.0*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.0*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.0*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.0*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.0*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.0*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.0*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.0*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="iOS"
+
+[OneBrowser/4.0*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.0"
+Platform="RIM OS"
+
+[OneBrowser/4.0*]
+Parent="OneBrowser 4.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 4.1
+
+[OneBrowser 4.1]
+Parent="DefaultProperties"
+Comment="OneBrowser 4.1"
+Browser="OneBrowser"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+
+[OneBrowser/4.1?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.1"
+Platform="RIM OS"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.1?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+
+[OneBrowser/4.1?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="RIM OS"
+
+[OneBrowser/4.1*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.1*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.1*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.1*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.1*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.1*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="Android"
+
+[OneBrowser/4.1*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.1*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.1*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.1*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.1*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.1*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.1*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.1*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.1*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.1*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="iOS"
+
+[OneBrowser/4.1*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.1"
+Platform="RIM OS"
+
+[OneBrowser/4.1*]
+Parent="OneBrowser 4.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; OneBrowser 4.2
+
+[OneBrowser 4.2]
+Parent="DefaultProperties"
+Comment="OneBrowser 4.2"
+Browser="OneBrowser"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?2.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.0*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.1*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.2*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.3*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.4*GT-S5302 *) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?2.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.0*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.1*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.2*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.3*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.4*Micromax A27*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2*(*Linux*Android?2.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.0*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2*(*Linux*Android?4.1*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2*(*Linux*Android?4.2*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2*(*Linux*Android?4.3*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.4*Micromax A27 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?2.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.0*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.1*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.2*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.3*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.4*GT-S7562*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2*(*Linux*Android?2.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.0*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2*(*Linux*Android?4.1*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2*(*Linux*Android?4.2*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2*(*Linux*Android?4.3*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.4*GT-S7562 *) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+
+[OneBrowser/4.2?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) Version/*Safari/*]
+Parent="OneBrowser 4.2"
+Platform="RIM OS"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.2?Mozilla/5.0 (*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+
+[OneBrowser/4.2?Mozilla/5.0 (*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="RIM OS"
+
+[OneBrowser/4.2*(*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[OneBrowser/4.2*(*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[OneBrowser/4.2*(*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[OneBrowser/4.2*(*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[OneBrowser/4.2*(*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[OneBrowser/4.2*(*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="Android"
+
+[OneBrowser/4.2*(*CPU iPhone OS 3?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS 3?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.1"
+
+[OneBrowser/4.2*(*CPU iPhone OS 3?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="3.2"
+
+[OneBrowser/4.2*(*CPU iPhone OS 4?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS 4?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.1"
+
+[OneBrowser/4.2*(*CPU iPhone OS 4?2* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.2"
+
+[OneBrowser/4.2*(*CPU iPhone OS 4?3* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="4.3"
+
+[OneBrowser/4.2*(*CPU iPhone OS 5?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS 5?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="5.1"
+
+[OneBrowser/4.2*(*CPU iPhone OS 6?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS 6?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="6.1"
+
+[OneBrowser/4.2*(*CPU iPhone OS 7?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS 7?1* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="7.1"
+
+[OneBrowser/4.2*(*CPU iPhone OS 8?0* like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+Platform_Version="8.0"
+
+[OneBrowser/4.2*(*CPU iPhone OS * like Mac OS X*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="iOS"
+
+[OneBrowser/4.2*(*BlackBerry; U*) AppleWebKit/* (KHTML, like Gecko) *Safari/*]
+Parent="OneBrowser 4.2"
+Platform="RIM OS"
+
+[OneBrowser/4.2*]
+Parent="OneBrowser 4.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.0
+
+[iBrowser 2.0]
+Parent="DefaultProperties"
+Comment="iBrowser 2.0"
+Browser="iBrowser"
+Version="2.0"
+MajorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.0* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.0/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.0"
+Platform="Android"
+
+[iBrowser/2.0,Lava-Discover132/*]
+Parent="iBrowser 2.0"
+
+[iBrowser/Mini2.0 (*)*]
+Parent="iBrowser 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.1
+
+[iBrowser 2.1]
+Parent="DefaultProperties"
+Comment="iBrowser 2.1"
+Browser="iBrowser"
+Version="2.1"
+MajorVer=2
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.1* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.1/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.1"
+Platform="Android"
+
+[iBrowser/2.1,Lava-Discover132/*]
+Parent="iBrowser 2.1"
+
+[iBrowser/Mini2.1 (*)*]
+Parent="iBrowser 2.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.2
+
+[iBrowser 2.2]
+Parent="DefaultProperties"
+Comment="iBrowser 2.2"
+Browser="iBrowser"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.2* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.2/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.2"
+Platform="Android"
+
+[iBrowser/2.2,Lava-Discover132/*]
+Parent="iBrowser 2.2"
+
+[iBrowser/Mini2.2 (*)*]
+Parent="iBrowser 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.3
+
+[iBrowser 2.3]
+Parent="DefaultProperties"
+Comment="iBrowser 2.3"
+Browser="iBrowser"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.3* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.3/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.3"
+Platform="Android"
+
+[iBrowser/2.3,Lava-Discover132/*]
+Parent="iBrowser 2.3"
+
+[iBrowser/Mini2.3 (*)*]
+Parent="iBrowser 2.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.4
+
+[iBrowser 2.4]
+Parent="DefaultProperties"
+Comment="iBrowser 2.4"
+Browser="iBrowser"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.4* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.4/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.4"
+Platform="Android"
+
+[iBrowser/2.4,Lava-Discover132/*]
+Parent="iBrowser 2.4"
+
+[iBrowser/Mini2.4 (*)*]
+Parent="iBrowser 2.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.5
+
+[iBrowser 2.5]
+Parent="DefaultProperties"
+Comment="iBrowser 2.5"
+Browser="iBrowser"
+Version="2.5"
+MajorVer=2
+MinorVer=5
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.5* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.5/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.5"
+Platform="Android"
+
+[iBrowser/2.5,Lava-Discover132/*]
+Parent="iBrowser 2.5"
+
+[iBrowser/Mini2.5 (*)*]
+Parent="iBrowser 2.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.6
+
+[iBrowser 2.6]
+Parent="DefaultProperties"
+Comment="iBrowser 2.6"
+Browser="iBrowser"
+Version="2.6"
+MajorVer=2
+MinorVer=6
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.6* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.6/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.6"
+Platform="Android"
+
+[iBrowser/2.6,Lava-Discover132/*]
+Parent="iBrowser 2.6"
+
+[iBrowser/Mini2.6 (*)*]
+Parent="iBrowser 2.6"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.7
+
+[iBrowser 2.7]
+Parent="DefaultProperties"
+Comment="iBrowser 2.7"
+Browser="iBrowser"
+Version="2.7"
+MajorVer=2
+MinorVer=7
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.7* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.7/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.7"
+Platform="Android"
+
+[iBrowser/2.7,Lava-Discover132/*]
+Parent="iBrowser 2.7"
+
+[iBrowser/Mini2.7 (*)*]
+Parent="iBrowser 2.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.8
+
+[iBrowser 2.8]
+Parent="DefaultProperties"
+Comment="iBrowser 2.8"
+Browser="iBrowser"
+Version="2.8"
+MajorVer=2
+MinorVer=8
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.8* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.8/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.8"
+Platform="Android"
+
+[iBrowser/2.8,Lava-Discover132/*]
+Parent="iBrowser 2.8"
+
+[iBrowser/Mini2.8 (*)*]
+Parent="iBrowser 2.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 2.9
+
+[iBrowser 2.9]
+Parent="DefaultProperties"
+Comment="iBrowser 2.9"
+Browser="iBrowser"
+Version="2.9"
+MajorVer=2
+MinorVer=9
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.9* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/2.9/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 2.9"
+Platform="Android"
+
+[iBrowser/2.9,Lava-Discover132/*]
+Parent="iBrowser 2.9"
+
+[iBrowser/Mini2.9 (*)*]
+Parent="iBrowser 2.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 3.0
+
+[iBrowser 3.0]
+Parent="DefaultProperties"
+Comment="iBrowser 3.0"
+Browser="iBrowser"
+Version="3.0"
+MajorVer=3
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.0* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.0/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.0"
+Platform="Android"
+
+[iBrowser/3.0,Lava-Discover132/*]
+Parent="iBrowser 3.0"
+
+[iBrowser/Mini3.0 (*)*]
+Parent="iBrowser 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; iBrowser 3.1
+
+[iBrowser 3.1]
+Parent="DefaultProperties"
+Comment="iBrowser 3.1"
+Browser="iBrowser"
+Version="3.1"
+MajorVer=3
+MinorVer=1
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.0*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.1*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.2*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.3*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.4*GT-I5510 Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.1* Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.2"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="2.3"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.0"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.1"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.2"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.3"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+Platform_Version="4.4"
+
+[iBrowser/3.1/Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML, like Gecko) Version/4.0 *Safari/*]
+Parent="iBrowser 3.1"
+Platform="Android"
+
+[iBrowser/3.1,Lava-Discover132/*]
+Parent="iBrowser 3.1"
+
+[iBrowser/Mini3.1 (*)*]
+Parent="iBrowser 3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FlyFlow 2.2
+
+[FlyFlow 2.2]
+Parent="DefaultProperties"
+Comment="FlyFlow 2.2"
+Browser="FlyFlow"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.2* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FlyFlow 2.3
+
+[FlyFlow 2.3]
+Parent="DefaultProperties"
+Comment="FlyFlow 2.3"
+Browser="FlyFlow"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.3* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FlyFlow 2.4
+
+[FlyFlow 2.4]
+Parent="DefaultProperties"
+Comment="FlyFlow 2.4"
+Browser="FlyFlow"
+Version="2.4"
+MajorVer=2
+MinorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.4* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; FlyFlow 2.5
+
+[FlyFlow 2.5]
+Parent="DefaultProperties"
+Comment="FlyFlow 2.5"
+Browser="FlyFlow"
+Version="2.5"
+MajorVer=2
+MinorVer=5
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Build/*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/* T5/*]
+Parent="FlyFlow 2.5"
+
+[Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android*) AppleWebKit/* (KHTML,*like Gecko*) FlyFlow/2.5* Version/4.0 *Safari/*]
+Parent="FlyFlow 2.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Microsoft Outlook Generic
+
+[Microsoft Outlook Generic]
+Parent="DefaultProperties"
+Comment="Microsoft Outlook Generic"
+Browser="Outlook"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/4.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/5.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.1*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 5.2;*Win64? x64*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0;*Win64? x64*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*WOW64*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.0*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Win64? x64*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*WOW64*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/4.0 (compatible; MSIE ?.0; *Windows NT 6.1*Trident/6.0; *MSOffice*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Microsoft Office/* (*Windows NT 5.1*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Microsoft Office/* (*Windows NT 5.2*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Microsoft Office/* (*Windows NT 5.2;*Win64? x64*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Microsoft Office/* (*Windows NT 6.0;*Win64? x64*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/* (*Windows NT 6.0*WOW64*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Microsoft Office/* (*Windows NT 6.0*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Microsoft Office/* (*Windows NT 6.1*Win64? x64*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/* (*Windows NT 6.1*WOW64*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Microsoft Office/* (*Windows NT 6.1*; Microsoft Office Outlook*]
+Parent="Microsoft Outlook Generic"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 11.0
+
+[IEMobile 11.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="11.0"
+MajorVer=11
+Platform="WinPhone8.1"
+Platform_Version="8.1"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 635*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 930*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 520*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 630*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 925*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0; NOKIA; Lumia 920*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile/11.0; NOKIA; Lumia 928*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile/11.0; NOKIA; Lumia 625*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile/11.0; NOKIA; 909*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile/11.0; NOKIA; Lumia 820*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11*IEMobile/11.0; NOKIA; Lumia 620*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 625*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 1320*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 820*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 920*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 630*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 520*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 1520*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 925*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 635*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; 909*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; NOKIA; Lumia 720*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (*Windows Phone 8.1*Trident/7.0*rv:11*; IEMobile/11.0) like Android *; compatible) like iPhone OS * Mac OS X WebKit/537.36 (KHTML, like Gecko) Chrome*Safari*]
+Parent="IEMobile 11.0"
+
+[Mozilla/*(*Windows Phone 8.1*Trident/7.0*rv:11.0*; IEMobile/11.0*]
+Parent="IEMobile 11.0"
+
+[Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0*rv:11.0; WPDesktop; *]
+Parent="IEMobile 11.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 10.0
+
+[IEMobile 10.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="10.0"
+MajorVer=10
+Platform="WinPhone8"
+Platform_Version="8.0"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; HTC; Windows Phone 8S by HTC)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; HTC; Windows Phone 8X by HTC)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 925*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 920*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 820*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 520*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 620*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 625*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 720*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; SAMSUNG; GT-I8750*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; 909*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; NOKIA; Lumia 1320*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible*; MSIE 10*; *Windows Phone 8* *Trident/6.0; IEMobile/10*; ARM; Touch; HUAWEI; W1-U00*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (*MSIE 10* *Windows Phone 8* *Trident/6.0* *IEMobile/10*)]
+Parent="IEMobile 10.0"
+
+[Mozilla/5.0 (compatible; MSIE 10*; Windows NT 6.2; Trident/6.0; ARM; Touch; WPDesktop)]
+Parent="IEMobile 10.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 9.0
+
+[IEMobile 9.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="9.0"
+MajorVer=9
+Platform="WinPhone7.5"
+Platform_Version="7.5"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows NT 6.0; Trident/5.0; mobile version65)]
+Parent="IEMobile 9.0"
+Platform="WinPhone6"
+Platform_Version="6.5"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows NT 6.1; Trident/5.0; XBLWP7; ZuneWP7)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; DELL; Venue Pro)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; 7 Mozart T8698)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; 7 Mozart)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; 7 Pro T7576)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; 7 Trophy)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; HD7 T9292)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Radar 4G)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Radar C110e*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; Radar)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; HTC; TITAN X310e)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; LG; LG-E900)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; LG; LG-E906)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 510*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 610*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 710*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 800*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 900*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; NOKIA; Lumia 925*)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0; SAMSUNG; OMNIA7)]
+Parent="IEMobile 9.0"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0*]
+Parent="IEMobile 9.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 8.0
+
+[IEMobile 8.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="8.0"
+MajorVer=8
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 8.*)*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HD_mini_T5555 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC-ST7377/* (*) Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_HD2_T8585 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_HD2_T8585/480x800 4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Maple_S520 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_P3700 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Snap_S521 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Snap_S523/* (*Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Touch_Cruise_T4242 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Touch_Diamond2_T5353 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Touch_HD_T8282 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Touch_Pro2_T7373 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[HTC_Touch_Pro_T7272 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[Mozilla/5.0 Vodafone/1.0/LG-GM750/* Browser/IE8.* (*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*)]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-C3050*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-3210*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B3310*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B3410*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B7330/* (compatible*; MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B7610*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-E2550*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-I6410*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-I8320*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S3370*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S3650*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S5230*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S5560*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S7550*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-i8000*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-S8000*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-S8300*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-E250*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-F480*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-G800*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-U700*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-U900*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-i900*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 8.*]
+Parent="IEMobile 8.0"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 7.11
+
+[IEMobile 7.11]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="7.11"
+MajorVer=7
+MinorVer=11
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[HTC_Touch_HD_T8282/480x800 (compatible*; MSIE 6.0; Windows CE; IEMobile 7.11)]
+Parent="IEMobile 7.11"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows CE; IEMobile 7.11) Vodafone/1.0/HPiPAQDataMessenger/* Browser/VF-Browser/*]
+Parent="IEMobile 7.11"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows CE; IEMobile 7.11) Vodafone/1.0/HTC_Touch_Pro/*]
+Parent="IEMobile 7.11"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 7.0
+
+[IEMobile 7.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="7.0"
+MajorVer=7
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 7.*)*]
+Parent="IEMobile 7.0"
+
+[Mozilla/4.0 (compatible; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0*)*]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[8900a/1.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[8900b/MR2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HPiPAQ910/1.0/Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*(PPC; 320x240)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC-8900/1.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC-P3450-Ten/PPC; 240x320; OpVer 23.227.2.792 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC-P4550-orange/PPC; 240x320; OpVer 24.181.2.731 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P3300 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P3470 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P3650 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P3700 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P4550 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_P6500 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_S730 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_S740 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_TouchDual Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_Touch_3G_T3232 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_Touch_HD_T8282 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_Touch_Pro_T7272 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_TyTN_II Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.11)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[HTC_TyTN_II Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.6)]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; 7 Mozart)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; 7 Pro T7576)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; LG; LG-E900)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; SAMSUNG; OMNIA7)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 520*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 720*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 820*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 920*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 925*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 930*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; NOKIA; Lumia 1520*)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0; HTC; Windows Phone 8S by HTC)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[O2/1.0/SEX1i/R?AA Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*UP.Link/6.3*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[PANTECH-C810/R01 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Palm750/v0005 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-C3050*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-3210*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B3310*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B3410*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-B7610*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-E2550*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-I6410*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-I8320*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S3370*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S3650*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S5230*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S5560*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-S7550*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-GT-i8000*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-S8000*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-S8300*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-E250*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-F480*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-G800*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I617/1.0 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.6) UP.Link/6.3.0.0.0]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I617/UCHH2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I617/UCHJ1 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I627/UCIC2 * Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I907/UCHI5 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-U700*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-U900*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[SAMSUNG-SGH-i900*(*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Vodafone/1.0/SamsungC6625/BUIF2 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[X1i Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Xda_Stellar? 240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Xda_Stellar? 240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.11*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Xda_orbit_2/240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Xda_orbit_2/240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.11*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Xda_star; 240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 7.*]
+Parent="IEMobile 7.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 7.0; Windows Phone OS 7.0; Trident/3.1; IEMobile/7.0*]
+Parent="IEMobile 7.0"
+Platform="WinPhone7"
+Platform_Version="7.0"
+
+[Mozilla/4.0 (compatible*; MSIE 7.0*; Windows NT 6.1; XBLWP7; ZuneWP7)]
+Parent="IEMobile 7.0"
+Platform="WinPhone7.5"
+Platform_Version="7.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 6.0
+
+[IEMobile 6.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="6.0"
+MajorVer=6
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows CE; IEMobile 6.*)*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/5.0 (compatible*; MSIE 9.0*; Windows NT 5.1; *; mobile version65)]
+Parent="IEMobile 6.0"
+Platform="WinPhone6"
+Platform_Version="6.5"
+
+[ASUS1210/1.0 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; Smartphone; 240x320; ASUS1210)*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Debussy/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; Smartphone; 176x220; HPiPAQ510/1.0)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HPiPAQ610/1.0 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; PPC)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC-3100/1.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC-8100/1.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; PPC; 240x320)*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC-8500/1.2 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*)*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC_P4350 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC_S620 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC_S710-Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; Smartphone; 240x320; Smartphone)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC_TyTN Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.12)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[HTC_X7500 Mozilla/4.0 (compatible*; MSIE 6.0; Windows CE; IEMobile 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.12) PPC; MDA Touch/1.0 *]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.8) PPC; 240x320; HTC_P3600/1.0 *]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows CE; IEMobile 6.12) Vodafone/1.0/HTC_Elf/*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows CE; IEMobile 6.12) Vodafone/1.0/HTC_VPACompactIV/*]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows NT 5.1; HTC_Touch2_T3333; Windows Phone 6.5)*]
+Parent="IEMobile 6.0"
+Platform="WinPhone6"
+Platform_Version="6.5"
+
+[Mozilla/4.0 (compatible*; MSIE 6.0; Windows NT 5.1; HTC_Touch_HD_T8282; Windows Phone 6.5)*]
+Parent="IEMobile 6.0"
+Platform="WinPhone6"
+Platform_Version="6.5"
+
+[Xda orbit; 240x320 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinCE"
+
+[acer_S200 Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows NT 5.1; Windows Phone 6.*)]
+Parent="IEMobile 6.0"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+isMobileDevice="false"
+
+[Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Windows Phone 6.5 HTC_HD2/1.0)]
+Parent="IEMobile 6.0"
+Platform="WinPhone6"
+Platform_Version="6.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 5.5
+
+[IEMobile 5.5]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="5.5"
+MajorVer=5
+MinorVer=5
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[HTC-2125/1.2 Mozilla/4.0 (*compatible*;*MSIE 5.5; Windows CE; Smartphone; 240x320)*]
+Parent="IEMobile 5.5"
+Platform="WinCE"
+
+[HTC-8100/1.2 Mozilla/4.0 (*compatible*;*MSIE 5.5; Windows CE; PPC; 240x320)*]
+Parent="IEMobile 5.5"
+Platform="WinCE"
+
+[HTC-8500/1.2 Mozilla/4.0 (*compatible*;*MSIE 5.5; Windows CE; PPC; 240x320)*]
+Parent="IEMobile 5.5"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 5.5*]
+Parent="IEMobile 5.5"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 5.0
+
+[IEMobile 5.0]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="5.0"
+MajorVer=5
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/4.0 (*compatible*;*MSIE 6.0; Windows CE; IEMobile 5.*]
+Parent="IEMobile 5.0"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 4.01
+
+[IEMobile 4.01]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="4.01"
+MajorVer=4
+MinorVer=01
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[AUDIOVOX-SMT5600/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[BenQ P50 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod565 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod575 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod575/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod577W/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod577W/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 240x320)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod595/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 240x320)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod818/4.21.1088/WAP1.2 *?Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC; 240x320)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod818/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC; 240x320)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod818Pro/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC; 240x320; Dopod818 Pro)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod838 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod838Pro/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*; Dopod838*Pro)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Dopod900 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*; Dopod900)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodC700/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodC720W/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodD810/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodP800W/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodS300/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[DopodS301/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[HPiPAQhw6900/1.0/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[HTC_P3400-Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[HTC_P4350-Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[HTC_Touch2_T3333 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[LENOVO-ET980/*/WAP2.0 */ (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MIO8390/R41 Profile/MIDP-1.0 MIDP-2.0 Configuration/CLDC-1.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx/1.0* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx220* (*compatible*;*MSIE 4.01; Windows CE;*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx220/* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx220/0.3* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx220/1.* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx220/3* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[MOT-MPx230/* Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; O2 Xda 2mini*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; O2 Xda 2s;*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; O2 Xda II;*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; O2 Xphone II*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; O2 Xphone*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Xda neo*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[Mozilla/4.0 MPx (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[SAMSUNG-SGH-I607/I607FG1 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod566/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod566/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0?Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod566/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0?Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 240x320)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod586/4.21.1088/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0/Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod710/5.1.195/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; Smartphone; 176x220)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod830/5.1.70/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0 Mozilla/4.0 (*compatible*;*MSIE 4.01; Windows CE; PPC; 240x320)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[dopod838/5.1.65/WAP1.2 Profile/MIDP2.0 Configuration/CLDC1.0 (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+[htc900/ (*compatible*;*MSIE 4.01; Windows CE*)]
+Parent="IEMobile 4.01"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; IEMobile 3.02
+
+[IEMobile 3.02]
+Parent="DefaultProperties"
+Comment="IEMobile"
+Browser="IEMobile"
+Version="3.02"
+MajorVer=3
+MinorVer=02
+Platform="WinMobile"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/2.0 (*compatible*;*MSIE 3.02; Windows CE*)]
+Parent="IEMobile 3.02"
+Platform="WinCE"
+
+[Mozilla/2.0 (*compatible*;*MSIE 3.02; Windows CE; 240x320)]
+Parent="IEMobile 3.02"
+Platform="WinCE"
+
+[Mozilla/2.0 (*compatible*;*MSIE 3.02; Windows CE; PPC*]
+Parent="IEMobile 3.02"
+Platform="WinCE"
+
+[Mozilla/2.0 (*compatible*;*MSIE 3.02; Windows CE; Smartphone*]
+Parent="IEMobile 3.02"
+Platform="WinCE"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kindle
+
+[Kindle]
+Parent="DefaultProperties"
+Comment="Kindle"
+Browser="Kindle"
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (Linux; U;*) AppleWebKit/528.5+ (KHTML, like Gecko, Safari/528.5+) Version/4.0 Kindle/3.0*]
+Parent="Kindle"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/4.0 (compatible; Linux*NetFront/3.* Kindle/1.0 (screen 600x800)]
+Parent="Kindle"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (Linux; U*) AppleWebKit/* (KHTML, like Gecko, Safari/*Version/4.0 Kindle/3.0 (screen 600x800; rotate)]
+Parent="Kindle"
+Version="3.0"
+MajorVer=3
+
+[Mozilla/5.0 (Linux*; Android 2.3*Kindle Fire*) AppleWebKit/* (*KHTML, like Gecko*) Version/4.0*Safari/533.1]
+Parent="Kindle"
+Comment="Kindle Fire"
+Version="4.0"
+MajorVer=4
+Platform_Version="2.3"
+
+[Mozilla/5.0 (X11; U; Linux armv* like Android; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0 Safari/* Kindle/3.*]
+Parent="Kindle"
+Version="5.0"
+MajorVer=5
+Platform="Linux Smartphone OS"
+
+[Mozilla/5.0 (Linux*Android 2.3*Kindle Fire*) AppleWebKit/* (*KHTML, like Gecko*) Version/4.0 Mobile Safari/*]
+Parent="Kindle"
+Comment="Kindle Fire"
+Browser="Kindle Fire"
+Version="4.0"
+MajorVer=4
+Platform_Version="2.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Postbox 3.0
+
+[Postbox 3.0]
+Parent="DefaultProperties"
+Comment="Postbox 3.0"
+Browser="Postbox"
+Version="3.0"
+MajorVer=3
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Mac OS X 10.8*) Gecko/* Postbox/3.*]
+Parent="Postbox 3.0"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) Gecko/* Postbox/3.*]
+Parent="Postbox 3.0"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) Gecko/* Postbox/3.*]
+Parent="Postbox 3.0"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) Gecko/* Postbox/3.*]
+Parent="Postbox 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Maemo Browser
+
+[Maemo]
+Parent="DefaultProperties"
+Comment="Maemo Browser"
+Browser="Maemo"
+Platform="Linux"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (X11; U; Linux*; *; rv:1.9.*) Gecko/* Firefox/* Maemo Browser 1.7.*]
+Parent="Maemo"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 8.5
+
+[Nokia Browser 8.5]
+Parent="DefaultProperties"
+Comment="Nokia Browser 8.5"
+Browser="Nokia Browser"
+Version="8.5"
+MajorVer=8
+MinorVer=5
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (MeeGo; NokiaN9) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.5*Safari/534*]
+Parent="Nokia Browser 8.5"
+Platform="MeeGo"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 8.3
+
+[Nokia Browser 8.3]
+Parent="DefaultProperties"
+Comment="Nokia Browser 8.3"
+Browser="Nokia Browser"
+Version="8.3"
+MajorVer=8
+MinorVer=3
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* Nokia500/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaE7-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaN8-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaX7-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* Nokia500/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaX7-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* Nokia603/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* Nokia700/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* Nokia808PureView/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaC7-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.3*Safari/*]
+Parent="Nokia Browser 8.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.8
+
+[Nokia Browser 7.8]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.8"
+Browser="Nokia Browser"
+Version="7.8"
+MajorVer=7
+MinorVer=8
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.8*Safari/*]
+Parent="Nokia Browser 7.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.7
+
+[Nokia Browser 7.7]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.7"
+Browser="Nokia Browser"
+Version="7.7"
+MajorVer=7
+MinorVer=7
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.7*Safari/*]
+Parent="Nokia Browser 7.7"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.4
+
+[Nokia Browser 7.4]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.4"
+Browser="Nokia Browser"
+Version="7.4"
+MajorVer=7
+MinorVer=4
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC6-01*; *) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC7-00/*; *) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaE7-00/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaN8-00* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaX7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaX7-00/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaE7-00/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5230/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC5-00/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC6-00/*; *) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE5-00/*; *) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE72-1/*; * ) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-1/12.0.024; *; *) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-4/*; *) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.4*]
+Parent="Nokia Browser 7.4"
+
+[Nokia702T_TD/* (SymbianOS/*; Series60/* Mozilla/5.0; *) AppleWebKit/* (KHTML,*like Gecko*)NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+[NokiaT7-00_TD/CMCC (SymbianOS/3; Release/*; Series60/5.2 Mozilla/5.0; * ) AppleWebKit/* (KHTML,*like Gecko*)NokiaBrowser/7.4*Safari/*]
+Parent="Nokia Browser 7.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.3
+
+[Nokia Browser 7.3]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.3"
+Browser="Nokia Browser"
+Version="7.3"
+MajorVer=7
+MinorVer=3
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC6-01*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaE7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaX7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (Symbian/3*; Series60/* NokiaE7-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5230/*) AppleWebKit/* (KHTML, like Gecko) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC5-00*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC5-03*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC5-05/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC6-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE5-00/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE72-1/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-1/12.0.024; *) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-4/*) AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/7.3*]
+Parent="Nokia Browser 7.3"
+
+[Nokia702T_TD/* (SymbianOS/*; Series60/* Mozilla/5.0; *) AppleWebKit/* (KHTML,*like Gecko*)NokiaBrowser/7.3*Safari/*]
+Parent="Nokia Browser 7.3"
+
+[NokiaT7-00_TD/CMCC (SymbianOS/3; Release/*; Series60/5.2 Mozilla/5.0; * ) AppleWebKit/* (KHTML,*like Gecko*)NokiaBrowser/7.3*Safari/*]
+Parent="Nokia Browser 7.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.2
+
+[Nokia Browser 7.2]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.2"
+Browser="Nokia Browser"
+Version="7.2"
+MajorVer=7
+MinorVer=2
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8*) AppleWebKit/* (KHTML,*like Gecko*) Version/3.0 BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/*) AppleWebKit/* (KHTML,*like Gecko*) Version/3.0 BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC6-00/* AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaC6-01/* AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5228/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5800d-1/5*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC5-03/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC6-01/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE5-00/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-1/*) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5230/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* Nokia5230/*) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+[Mozilla/5.0/SN* (SymbianOS/*; Series60/* VertuConstellationQuest/*) AppleWebKit/* (KHTML,*like Gecko*) Version/* BrowserNG/7.2*]
+Parent="Nokia Browser 7.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 7.1
+
+[Nokia Browser 7.1]
+Parent="DefaultProperties"
+Comment="Nokia Browser 7.1"
+Browser="Nokia Browser"
+Version="7.1"
+MajorVer=7
+MinorVer=1
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaE55-1/021.013*) AppleWebKit/* (KHTML,*like Gecko*) Version/3.0 BrowserNG/7.1*]
+Parent="Nokia Browser 7.1"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN86-1/*; *) AppleWebKit/* (KHTML,*like Gecko*) Version/3.0 BrowserNG/7.1*]
+Parent="Nokia Browser 7.1"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-1/12.0.024; *; *) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.1*]
+Parent="Nokia Browser 7.1"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaN97-1/2*; *) AppleWebKit/* (KHTML,*like Gecko*) BrowserNG/7.1*]
+Parent="Nokia Browser 7.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 1.4
+
+[Nokia Proxy Browser 1.4]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 1.4"
+Browser="Nokia Proxy Browser"
+Version="1.4"
+MajorVer=1
+MinorVer=4
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/1.4*]
+Parent="Nokia Proxy Browser 1.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 1.5
+
+[Nokia Proxy Browser 1.5]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 1.5"
+Browser="Nokia Proxy Browser"
+Version="1.5"
+MajorVer=1
+MinorVer=5
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/1.5*]
+Parent="Nokia Proxy Browser 1.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 2.0
+
+[Nokia Proxy Browser 2.0]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 2.0"
+Browser="Nokia Proxy Browser"
+Version="2.0"
+MajorVer=2
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/2.0*]
+Parent="Nokia Proxy Browser 2.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 2.2
+
+[Nokia Proxy Browser 2.2]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 2.2"
+Browser="Nokia Proxy Browser"
+Version="2.2"
+MajorVer=2
+MinorVer=2
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/2.2*]
+Parent="Nokia Proxy Browser 2.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 2.3
+
+[Nokia Proxy Browser 2.3]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 2.3"
+Browser="Nokia Proxy Browser"
+Version="2.3"
+MajorVer=2
+MinorVer=3
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/2.3*]
+Parent="Nokia Proxy Browser 2.3"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 3.0
+
+[Nokia Proxy Browser 3.0]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 3.0"
+Browser="Nokia Proxy Browser"
+Version="3.0"
+MajorVer=3
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/3.0*]
+Parent="Nokia Proxy Browser 3.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 3.2
+
+[Nokia Proxy Browser 3.2]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 3.2"
+Browser="Nokia Proxy Browser"
+Version="3.2"
+MajorVer=3
+MinorVer=2
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/3.2*]
+Parent="Nokia Proxy Browser 3.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 3.8
+
+[Nokia Proxy Browser 3.8]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 3.8"
+Browser="Nokia Proxy Browser"
+Version="3.8"
+MajorVer=3
+MinorVer=8
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/3.8*]
+Parent="Nokia Proxy Browser 3.8"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 3.9
+
+[Nokia Proxy Browser 3.9]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 3.9"
+Browser="Nokia Proxy Browser"
+Version="3.9"
+MajorVer=3
+MinorVer=9
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/3.9*]
+Parent="Nokia Proxy Browser 3.9"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 4.0
+
+[Nokia Proxy Browser 4.0]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 4.0"
+Browser="Nokia Proxy Browser"
+Version="4.0"
+MajorVer=4
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/4.0*]
+Parent="Nokia Proxy Browser 4.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 5.0
+
+[Nokia Proxy Browser 5.0]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 5.0"
+Browser="Nokia Proxy Browser"
+Version="5.0"
+MajorVer=5
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/5.0*]
+Parent="Nokia Proxy Browser 5.0"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Proxy Browser 5.5
+
+[Nokia Proxy Browser 5.5]
+Parent="DefaultProperties"
+Comment="Nokia Proxy Browser 5.5"
+Browser="Nokia Proxy Browser"
+Version="5.5"
+MajorVer=5
+MinorVer=5
+Platform="SymbianOS"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Series40; Nokia109*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia110*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia112*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia113*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia200*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia201*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia203*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series30*; Nokia220*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia220*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia300*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia305*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia306*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia6300*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-05*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-06*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-01*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; NokiaC2-03*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40; Nokia501/*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series30*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+[Mozilla/5.0 (Series40*) Gecko/* S40OviBrowser/5.5*]
+Parent="Nokia Proxy Browser 5.5"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser
+
+[Nokia Browser]
+Parent="DefaultProperties"
+Comment="Nokia Browser"
+Browser="Nokia Browser"
+Platform="JAVA"
+isMobileDevice="true"
+
+[Nokia 5320]
+Parent="Nokia Browser"
+
+[Nokia2320c-2b/*]
+Parent="Nokia Browser"
+
+[Nokia2323c-2/*]
+Parent="Nokia Browser"
+
+[Nokia2650/*]
+Parent="Nokia Browser"
+
+[Nokia2720a-2b/*]
+Parent="Nokia Browser"
+
+[Nokia2730c-1/*]
+Parent="Nokia Browser"
+
+[Nokia2730c-1b/*]
+Parent="Nokia Browser"
+
+[Nokia3100/*]
+Parent="Nokia Browser"
+
+[Nokia3100b/*]
+Parent="Nokia Browser"
+
+[Nokia3108/*]
+Parent="Nokia Browser"
+
+[Nokia3120b/*]
+Parent="Nokia Browser"
+
+[Nokia3200/*]
+Parent="Nokia Browser"
+
+[Nokia3220/*]
+Parent="Nokia Browser"
+
+[Nokia3300/*]
+Parent="Nokia Browser"
+
+[Nokia3410/*]
+Parent="Nokia Browser"
+
+[Nokia3500c/*]
+Parent="Nokia Browser"
+
+[Nokia3510/*]
+Parent="Nokia Browser"
+
+[Nokia3510i/*]
+Parent="Nokia Browser"
+
+[Nokia3560/*]
+Parent="Nokia Browser"
+
+[Nokia3590/1.0(*]
+Parent="Nokia Browser"
+
+[Nokia3595/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia3595/1.0 (7.*]
+Parent="Nokia Browser"
+
+[Nokia5100/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia5140/2.0 (3.10) *]
+Parent="Nokia Browser"
+
+[Nokia5140i/2.0 (03.34) *]
+Parent="Nokia Browser"
+
+[Nokia5140i/2.0 (03.70) *]
+Parent="Nokia Browser"
+
+[Nokia5140i/2.0 (03.75) *]
+Parent="Nokia Browser"
+
+[Nokia5210/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia5230/*]
+Parent="Nokia Browser"
+
+[Nokia6010/1.0 (8.18) *]
+Parent="Nokia Browser"
+
+[Nokia6010/1.0 (8.62) *]
+Parent="Nokia Browser"
+
+[Nokia6020/2.0 (03.5?) *]
+Parent="Nokia Browser"
+
+[Nokia6020/2.0 (03.92) *]
+Parent="Nokia Browser"
+
+[Nokia6020/2.0 (04.10) *]
+Parent="Nokia Browser"
+
+[Nokia6020/2.0 (04.50) *]
+Parent="Nokia Browser"
+
+[Nokia6020/2.0 (04.90) *]
+Parent="Nokia Browser"
+
+[Nokia6021/2.0 (04.50) *]
+Parent="Nokia Browser"
+
+[Nokia6030/2.0 (y3.43) *]
+Parent="Nokia Browser"
+
+[Nokia6030/2.0 (y3.4?) *]
+Parent="Nokia Browser"
+
+[Nokia6030/2.0 (y4.10) *]
+Parent="Nokia Browser"
+
+[Nokia6030b/2.0 (m3.3?) *]
+Parent="Nokia Browser"
+
+[Nokia6060/2.0 (k3.6?) *]
+Parent="Nokia Browser"
+
+[Nokia6061/2.0 (4.10) *]
+Parent="Nokia Browser"
+
+[Nokia6100/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6100/1.0 (05.*]
+Parent="Nokia Browser"
+
+[Nokia6100/1.0 (05.80) *]
+Parent="Nokia Browser"
+
+[Nokia6100/1.0 (06.*]
+Parent="Nokia Browser"
+
+[Nokia6101/2.0 (03.*]
+Parent="Nokia Browser"
+
+[Nokia6101/2.0 (03.35) *]
+Parent="Nokia Browser"
+
+[Nokia6101/2.0 (04.10) *]
+Parent="Nokia Browser"
+
+[Nokia6101/2.0 (04.50) *]
+Parent="Nokia Browser"
+
+[Nokia6102/2.0 (03.38) *]
+Parent="Nokia Browser"
+
+[Nokia6102i/2.0 (04.6?) *]
+Parent="Nokia Browser"
+
+[Nokia6103/2.0 (04.61) *]
+Parent="Nokia Browser"
+
+[Nokia6108/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6111/2.0 (03.58) *]
+Parent="Nokia Browser"
+
+[Nokia6125/2.0 (03.71) *]
+Parent="Nokia Browser"
+
+[Nokia6131/2.0 (03.?0) *]
+Parent="Nokia Browser"
+
+[Nokia6131/2.0 (06.?0) *]
+Parent="Nokia Browser"
+
+[Nokia6170/2.0 (03.*]
+Parent="Nokia Browser"
+
+[Nokia6200/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6200/1.0 (3.*]
+Parent="Nokia Browser"
+
+[Nokia6220/2.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6220/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia6230/2.0 (03.1?) *]
+Parent="Nokia Browser"
+
+[Nokia6230/2.0 (04.*]
+Parent="Nokia Browser"
+
+[Nokia6230/2.0 (05.*]
+Parent="Nokia Browser"
+
+[Nokia6230/2.0 (05.50) *]
+Parent="Nokia Browser"
+
+[Nokia6230i/2.0 (03.*]
+Parent="Nokia Browser"
+
+[Nokia6230i/2.0 (03.2?) *]
+Parent="Nokia Browser"
+
+[Nokia6230i/2.0 (03.62) *]
+Parent="Nokia Browser"
+
+[Nokia6230i/2.0 (03.70) *]
+Parent="Nokia Browser"
+
+[Nokia6230i/2.0 (03.80) *]
+Parent="Nokia Browser"
+
+[Nokia6270/2.0 (03.5?) *]
+Parent="Nokia Browser"
+
+[Nokia6270/2.0 (03.6?) *]
+Parent="Nokia Browser"
+
+[Nokia6280/2.0 (03.*]
+Parent="Nokia Browser"
+
+[Nokia6280/2.0 (03.6?) *]
+Parent="Nokia Browser"
+
+[Nokia6300/2.0 (04.70) *]
+Parent="Nokia Browser"
+
+[Nokia6300/2.0 (05.00) *]
+Parent="Nokia Browser"
+
+[Nokia6300/2.0 (06.*) *]
+Parent="Nokia Browser"
+
+[Nokia6300/2.0 (07.*) *]
+Parent="Nokia Browser"
+
+[Nokia6303iclassic/5.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6310/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6310i/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6500c/2.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6500s-1/2.0 (04.8?) *]
+Parent="Nokia Browser"
+
+[Nokia6510/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6560/1.0 (01.24) *]
+Parent="Nokia Browser"
+
+[Nokia6610/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6610/1.0 (4.*]
+Parent="Nokia Browser"
+
+[Nokia6610I/1.0]
+Parent="Nokia Browser"
+
+[Nokia6610I/1.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6650/2.0 (*]
+Parent="Nokia Browser"
+
+[Nokia6700c-1/2.0 (* Mozilla/?.0 AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+
+[Nokia6800/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia6800/2.0 (4.1?) *]
+Parent="Nokia Browser"
+
+[Nokia6820/2.0 (4.*]
+Parent="Nokia Browser"
+
+[Nokia6820/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia6822/2.0 (4.*]
+Parent="Nokia Browser"
+
+[Nokia7200/2.0 (3.1*]
+Parent="Nokia Browser"
+
+[Nokia7210/1.0 (4.*]
+Parent="Nokia Browser"
+
+[Nokia7210/1.0 (5.*]
+Parent="Nokia Browser"
+
+[Nokia7210/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia7210/1.0(3.09) *]
+Parent="Nokia Browser"
+
+[Nokia7230/* Profile/MIDP-2* Mozilla/5.0 AppleWebKit/* (KHTML, like Gecko) Safari/*]
+Parent="Nokia Browser"
+
+[Nokia7230/5.0 * (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+
+[Nokia7250/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia7250I/1.0 (4.*]
+Parent="Nokia Browser"
+
+[Nokia7250I/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia7260/2.0 (03.36) *]
+Parent="Nokia Browser"
+
+[Nokia7260/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia7270/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia7600/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia8310/1.0 (04.*]
+Parent="Nokia Browser"
+
+[Nokia8310/1.0 (05.*]
+Parent="Nokia Browser"
+
+[Nokia8310/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia8800/2.0 *]
+Parent="Nokia Browser"
+
+[Nokia8910/1.0 *]
+Parent="Nokia Browser"
+
+[Nokia8910i/1.0 *]
+Parent="Nokia Browser"
+
+[NokiaC2-01/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaC3-00/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaC3-01/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaC6-00/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaC7-00/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN70-1/2.05*]
+Parent="Nokia Browser"
+
+[NokiaN70-1/3.05*]
+Parent="Nokia Browser"
+
+[NokiaN70-1/5.06*]
+Parent="Nokia Browser"
+
+[NokiaN80-1/1.05*]
+Parent="Nokia Browser"
+
+[NokiaN90-1/3.05*]
+Parent="Nokia Browser"
+
+[NokiaX2-00/5.0 (* Mozilla/5.0 AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaX2-01/5.0 (* Mozilla/5.0 AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaX3-02/5.0 (*) * Mozilla/5.0 AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[6600/1.0 (*; Series60/*; SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/* (SymbianOS/*) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/4.0 (compatible*; MSIE 5.0; Series80/2.0 Nokia9300i/6.27 *)]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; ?; Series60/* NokiaN79-1/30.019*) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* Nokia5530c-2/11.0.053; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* Nokia5800d-1/52*; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* Nokia6220c-1/04.13; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* Nokia6760s-1/*; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaE63-1/1*; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaE63-1/4*; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaE71-1/1*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaE71-1/5*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaE90-1/07.38.0.2; * ) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; Series60/* NokiaN78-1/13.052*) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Mozilla/5.0 (SymbianOS/*; U; *; NokiaE50-2/06.* Series60/*) AppleWebKit/* (KHTML,*like Gecko*) Safari/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3230/2.0 (*SymbianOS/* Series60/2.1*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3250/2.0 (3.16) SymbianOS/* Series60/3.0 *]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3250/2.0 (3.23) SymbianOS/* Series60/3.0 *]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3650/1.0 (4.1?) SymbianOS/* Series60/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3650/1.0 SymbianOS/* Series60/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia3660/1.0 (*SymbianOS/* Series60/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia5500d/2.0 (03.14) SymbianOS/* Series60/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6260/2.0 (3.0*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6600/1.0 (4.09.1) SymbianOS/7.0s*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6600/1.0* SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6620/2.0* SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6630/1.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6630/1.0 *SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6670/2.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6670/2.0 *SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6680/1.0 *SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6680/1.0* SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6682/2.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia7610/2.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia7610/2.0 (6.0522.0) SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia7610/2.0 *SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia7650/1.0 SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia9210i/1.0 Symbian-Crystal/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaE61-1/3.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN-Gage/1.0 (4.03) SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN-Gage/1.0 SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN-GageQD/1.0 SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN-GageQD/2.0 (*SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN91-1/3.0 (1.10.030) SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[NokiaN95_8GB-?;Mozilla/5.0 SymbianOS/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[Nokia6120c/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+[X700/1.0 SymbianOS/7.0 Series60/*]
+Parent="Nokia Browser"
+Platform="SymbianOS"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia
+
+[Nokia]
+Parent="DefaultProperties"
+Comment="Nokia"
+Browser="Nokia"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (SymbianOS/*; Series60/* NokiaC6-00/*; Profile/MIDP-* Configuration/CLDC-*) AppleWebKit/* (KHTML, like Gecko) BrowserNG/7.2.*]
+Parent="Nokia"
+Browser="BrowserNG"
+Version="7.2"
+MajorVer=7
+MinorVer=2
+Platform="SymbianOS"
+
+[Mozilla/* (*SymbianOS*) AppleWebKit/* (KHTML, like Gecko) Safari/*]
+Parent="Nokia"
+Platform="SymbianOS"
+
+[*Nokia*/*]
+Parent="Nokia"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Pocket PC
+
+[Pocket PC]
+Parent="DefaultProperties"
+Comment="Pocket PC"
+Browser="Pocket PC"
+Platform="WinCE"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=1
+
+[*(compatible; MSIE *.*; Windows CE; PPC; *)]
+Parent="Pocket PC"
+
+[HTC-*/* Mozilla/* (compatible; MSIE *.*; Windows CE*)*]
+Parent="Pocket PC"
+
+[Mozilla/* (compatible; MSPIE *.*; *Windows CE*)*]
+Parent="Pocket PC"
+
+[T-Mobile* Mozilla/* (compatible; MSIE *.*; Windows CE; *)]
+Parent="Pocket PC"
+
+[Vodafone* Mozilla/* (compatible; MSIE *.*; Windows CE; *)*]
+Parent="Pocket PC"
+
+[Windows CE (Pocket PC) - Version *.*]
+Parent="Pocket PC"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Polaris
+
+[Polaris]
+Parent="DefaultProperties"
+Comment="Polaris"
+Browser="Polaris"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=2
+
+[LG-* Polaris/5.* MMP/2.*]
+Parent="Polaris"
+Version="5.0"
+MajorVer=5
+
+[LG-* Polaris/6.* MMP/2.*]
+Parent="Polaris"
+Version="6.0"
+MajorVer=6
+
+[LG-* Polaris/7.* MMP/2.*]
+Parent="Polaris"
+Version="7.0"
+MajorVer=7
+
+[Samsung-* Polaris/5.* MMP/2.*]
+Parent="Polaris"
+Version="5.0"
+MajorVer=5
+
+[Samsung-* Polaris/6.* MMP/2.*]
+Parent="Polaris"
+Version="6.0"
+MajorVer=6
+
+[Samsung-* Polaris/7.* MMP/2.*]
+Parent="Polaris"
+Version="7.0"
+MajorVer=7
+
+[Mozilla/4.0(compatible;Polaris 6.2*;Brew 3.1*)/* Samsung SCH-U820]
+Parent="Polaris"
+Version="6.2"
+MajorVer=6
+MinorVer=2
+Platform="Brew"
+Platform_Version="3.1"
+
+[Mozilla/4.0(compatible;Polaris 6.2*;Brew 3.1*)/* LGE VX8575]
+Parent="Polaris"
+Version="6.2"
+MajorVer=6
+MinorVer=2
+Platform="Brew"
+Platform_Version="3.1"
+
+[Mozilla/4.0(compatible;Polaris 6.2*;Brew 3.1*)/*]
+Parent="Polaris"
+Version="6.2"
+MajorVer=6
+MinorVer=2
+Platform="Brew"
+Platform_Version="3.1"
+
+[UTSTARCOM-GTX75/* POLARIS/6.00 Profile/MIDP-2.0 Configuration/CLDC-1.1 UNTRUSTED/1.0]
+Parent="Polaris"
+Version="6.0"
+MajorVer=6
+
+[* POLARIS/6.00 Profile/MIDP-2.0 Configuration/CLDC-1.1 UNTRUSTED/1.0]
+Parent="Polaris"
+Version="6.0"
+MajorVer=6
+
+[POLARIS/6.1 (BREW 3.1*)*]
+Parent="Polaris"
+Version="6.1"
+MajorVer=6
+MinorVer=1
+Platform="Brew"
+Platform_Version="3.1"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; wkhtmltopdf
+
+[wkhtmltopdf]
+Parent="DefaultProperties"
+Comment="wkhtmltopdf"
+Browser="wkhtmltopdf"
+Frames="true"
+IFrames="true"
+Tables="true"
+
+[Mozilla/5.0 (*CrOS*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="ChromeOS"
+
+[Mozilla/5.0 (*BSD Four*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="BSD"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux i686*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Linux"
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Linux"
+
+[Mozilla/5.0 (*Mac OS X 10_4*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10.4*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.4"
+
+[Mozilla/5.0 (*Mac OS X 10_5*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10.5*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10.6*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10.7*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10.8*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10.9*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X 10.10*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="MacOSX"
+Platform_Version=10
+
+[Mozilla/5.0 (*Windows NT 5.0*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win2000"
+Platform_Version="5.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinXP"
+Platform_Version="5.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.1*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinXP"
+Platform_Version="5.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinXP"
+Platform_Version="5.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 5.2*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinXP"
+Platform_Version="5.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinVista"
+Platform_Version="6.0"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.0*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="WinVista"
+Platform_Version="6.0"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win7"
+Platform_Version="6.1"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.1*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win7"
+Platform_Version="6.1"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.2*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win8"
+Platform_Version="6.2"
+Win32="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*WOW64*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win64="true"
+
+[Mozilla/5.0 (*Windows NT 6.3*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="Win8.1"
+Platform_Version="6.3"
+Win32="true"
+
+[Mozilla/5.0 (*CentOS*) AppleWebKit/* (KHTML, like Gecko) wkhtmltoimage Safari/*]
+Parent="wkhtmltopdf"
+Platform="CentOS"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; SEMC Browser
+
+[SEMC Browser]
+Parent="DefaultProperties"
+Comment="SEMC Browser"
+Browser="SEMC Browser"
+Platform="JAVA"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=1
+
+[*SEMC-Browser/*]
+Parent="SEMC Browser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Prince
+
+[Prince]
+Parent="DefaultProperties"
+Comment="Prince"
+Browser="Prince"
+Frames="true"
+IFrames="true"
+Tables="true"
+
+[Prince/7.1*]
+Parent="Prince"
+Version="7.1"
+MajorVer=7
+MinorVer=1
+
+[Prince/*]
+Parent="Prince"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; PhantomJS
+
+[PhantomJS]
+Parent="DefaultProperties"
+Comment="PhantomJS"
+Browser="PhantomJS"
+Platform="Linux"
+CssVersion=2
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.2*]
+Parent="PhantomJS"
+Version="1.2"
+MajorVer=1
+MinorVer=2
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.6*]
+Parent="PhantomJS"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.6*]
+Parent="PhantomJS"
+Version="1.6"
+MajorVer=1
+MinorVer=6
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.7*]
+Parent="PhantomJS"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.7*]
+Parent="PhantomJS"
+Version="1.7"
+MajorVer=1
+MinorVer=7
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.8*]
+Parent="PhantomJS"
+Version="1.8"
+MajorVer=1
+MinorVer=8
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.8*]
+Parent="PhantomJS"
+Version="1.8"
+MajorVer=1
+MinorVer=8
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[Mozilla/5.0 (*Linux*x86_64*) AppleWebKit/* (KHTML,*like Gecko*) CasperJS*PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+
+[Mozilla/5.0 (*Linux*) AppleWebKit/* (KHTML,*like Gecko*) CasperJS*PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+
+[Mozilla/5.0 (*Windows NT 6.2*WOW64*) AppleWebKit/* (KHTML,*like Gecko*) CasperJS*PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+Platform="Win8"
+Platform_Version="6.2"
+Win64="true"
+
+[PhantomJS/1.9*]
+Parent="PhantomJS"
+Version="1.9"
+MajorVer=1
+MinorVer=9
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Phantom Browser
+
+[Phantom Browser]
+Parent="DefaultProperties"
+Comment="Phantom Browser"
+Browser="Phantom Browser"
+Platform="JAVA"
+isMobileDevice="true"
+CssVersion=2
+
+[Mozilla/5.0 (LG-C199 AppleWebkit/* Browser/Phantom/V2.0*]
+Parent="Phantom Browser"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 (LG-C199 AppleWebkit/* Browser/Phantom/*]
+Parent="Phantom Browser"
+
+[Mozilla/5.0 *AppleWebkit/* Browser/Phantom/V2.0*]
+Parent="Phantom Browser"
+Version="2.0"
+MajorVer=2
+
+[Mozilla/5.0 *AppleWebkit/* Browser/Phantom/*]
+Parent="Phantom Browser"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Playstation
+
+[Playstation Browser]
+Parent="DefaultProperties"
+Comment="Playstation Browser"
+Browser="Playstation Browser"
+Platform="CellOS"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+
+[Mozilla/* (PlayStation 4*]
+Parent="Playstation Browser"
+
+[Mozilla/* (PLAYSTATION 3*]
+Parent="Playstation Browser"
+
+[Playstation Vita]
+Parent="DefaultProperties"
+Comment="PlayStation Vita"
+Browser="Sony Playstation Vita"
+Platform="JAVA"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (PlayStation Vita*) AppleWebKit/*]
+Parent="Playstation Vita"
+
+[Mozilla/5.0 (PlayStation Vita*]
+Parent="Playstation Vita"
+
+[Mozilla/* (PlayStation Vita*]
+Parent="Playstation Vita"
+
+[Playstation]
+Parent="DefaultProperties"
+Comment="Playstation"
+Browser="Playstation"
+Platform="JAVA"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/* (PSP (PlayStation Portable)*)]
+Parent="Playstation"
+Browser="Sony PSP"
+
+[Sony PS2 (Linux)]
+Parent="Playstation"
+Browser="Sony PS2"
+Platform="Linux"
+
+[Mozilla/* (PLAYSTATION*)]
+Parent="Playstation"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Skyfire
+
+[Skyfire]
+Parent="DefaultProperties"
+Comment="Skyfire"
+Browser="Skyfire"
+Platform="MacOSX"
+Platform_Version=10
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+JavaApplets="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Mac OS X 10_5*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.5"
+
+[Mozilla/5.0 (*Mac OS X 10_6*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.6"
+
+[Mozilla/5.0 (*Mac OS X 10_7*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.7"
+
+[Mozilla/5.0 (*Mac OS X 10_8*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.8"
+
+[Mozilla/5.0 (*Mac OS X 10_9*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.9"
+
+[Mozilla/5.0 (*Mac OS X 10_10*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+Platform_Version="10.10"
+
+[Mozilla/5.0 (*Mac OS X*)*AppleWebKit/530.17*(KHTML, like Gecko)*Version/*Safari/*Skyfire/2.*]
+Parent="Skyfire"
+Version="2.0"
+MajorVer=2
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Teleca-Obigo
+
+[Teleca-Obigo]
+Parent="DefaultProperties"
+Comment="Teleca-Obigo"
+Browser="Teleca-Obigo"
+Platform="JAVA"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=1
+
+[Mozilla/5.0 (compatible; Teleca *; *Brew 3.0*; U; *)*]
+Parent="Teleca-Obigo"
+Platform="Brew"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (compatible; Teleca *; *Brew 3.1*; U; *)*]
+Parent="Teleca-Obigo"
+Platform="Brew"
+Platform_Version="3.1"
+
+[AU-MIC*]
+Parent="Teleca-Obigo"
+
+[*MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[*Teleca/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[*AU-MIC-*]
+Parent="Teleca-Obigo"
+
+[BIRD_D670/1.00 Mtk6219/V7-05A Release/1.1.2005 Browser/Teleca *]
+Parent="Teleca-Obigo"
+
+[ZONDA-ZMNG1900/REV 2.*/Teleca Q03B1]
+Parent="Teleca-Obigo"
+
+[*Obigo/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-GD350/V100 Obigo/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[*Teleca-Obigo*]
+Parent="Teleca-Obigo"
+
+[*AU.MIC/*]
+Parent="Teleca-Obigo"
+
+[*MIC/*]
+Parent="Teleca-Obigo"
+
+[*Teleca/*]
+Parent="Teleca-Obigo"
+
+[*Browser/Obigo*]
+Parent="Teleca-Obigo"
+
+[*ObigoInternetBrowser/2*]
+Parent="Teleca-Obigo"
+Version="2.0"
+MajorVer=2
+
+[*Obigo Browser 2*]
+Parent="Teleca-Obigo"
+Version="2.0"
+MajorVer=2
+
+[*Teleca-Obigo 2*]
+Parent="Teleca-Obigo"
+Version="2.0"
+MajorVer=2
+
+[*ObigoInternetBrowser/Q03*]
+Parent="Teleca-Obigo"
+Version="3.0"
+MajorVer=3
+
+[*Browser/obigo-browser/q03*]
+Parent="Teleca-Obigo"
+Version="3.0"
+MajorVer=3
+
+[*Browser/Obigo-Browser/3*]
+Parent="Teleca-Obigo"
+Version="3.0"
+MajorVer=3
+
+[*Obigo/Q03*]
+Parent="Teleca-Obigo"
+Version="3.0"
+MajorVer=3
+
+[*TelecaBrowser/4*]
+Parent="Teleca-Obigo"
+Version="4.0"
+MajorVer=4
+
+[*Obigo/Q05*]
+Parent="Teleca-Obigo"
+Version="5.0"
+MajorVer=5
+
+[*Browser/Obigo-Q05*]
+Parent="Teleca-Obigo"
+Version="5.0"
+MajorVer=5
+
+[*Obigo/Q7*]
+Parent="Teleca-Obigo"
+Version="7.0"
+MajorVer=7
+
+[*Teleca/Q7*]
+Parent="Teleca-Obigo"
+Version="7.0"
+MajorVer=7
+
+[*TelecaBrowser/Q07*]
+Parent="Teleca-Obigo"
+Version="7.0"
+MajorVer=7
+
+[*Browser/Teleca-Q7*]
+Parent="Teleca-Obigo"
+Version="7.0"
+MajorVer=7
+
+[*Browser/Obigo-Q7*]
+Parent="Teleca-Obigo"
+Version="7.0"
+MajorVer=7
+
+[LG-CU500 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-G922 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GB230/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GM360/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GM360i/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GS290/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GT350/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GU230/V10a Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GW300FD/V100 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GX500/* Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KE970 MIC/1.1*]
+Parent="Teleca-Obigo"
+
+[LG-KG220/V09a Obigo/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-KM900/* Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KP210 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KU886 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-TU720 Obigo/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-U8210/V080 Obigo/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[MOT-EX112 Obigo/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[PHILIPS 535 / Teleca-Obigo *]
+Parent="Teleca-Obigo"
+
+[AU-MIC/1.1*]
+Parent="Teleca-Obigo"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[CODACOM C100/4.6 AU.MIC/1.1*]
+Parent="Teleca-Obigo"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[LG-KG99 MIC/1.1*]
+Parent="Teleca-Obigo"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[TSM-6/Teleca/1.1*]
+Parent="Teleca-Obigo"
+Version="1.1"
+MajorVer=1
+MinorVer=1
+
+[AU-MIC/2.0 MMP/2.0*]
+Parent="Teleca-Obigo"
+Version="2.0"
+MajorVer=2
+
+[LG-G1800 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+
+[LG-KM900/V10x Browser/Obigo-Q7.1*]
+Parent="Teleca-Obigo"
+Version="7.1"
+MajorVer=7
+MinorVer=1
+
+[Mozilla/5.0 (compatible; Teleca *; *Brew 3.0*]
+Parent="Teleca-Obigo"
+Platform="Brew"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (compatible; Teleca *; *Brew 3.1*]
+Parent="Teleca-Obigo"
+Platform="Brew"
+Platform_Version="3.1"
+
+[AU-MIC]
+Parent="Teleca-Obigo"
+
+[G5600 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-A7150 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-B2000 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-B2050 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-B2070 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-B2100 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-B2150 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-B2150 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-C1100 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C1100 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-C1150 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C1200 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C2100/MIC/WAP2.0/*]
+Parent="Teleca-Obigo"
+
+[LG-C2200 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C2500 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C3300 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C3310 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C3320 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C3380 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-C3400 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-F2100 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-F2300 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-F2300/MIC/WAP2.0/*]
+Parent="Teleca-Obigo"
+
+[LG-F2400 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-G262 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-G5600 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-G688 MIC/V100/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-G832 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GD510/V100 Teleca/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-GT365/V10g Teleca/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-KG220 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KG320 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KG800 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-KP500 Teleca/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KP500-Orange/V10i Teleca/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-KS360/V10b Teleca/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-L3100 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-LX150 AU-MIC-LX150/2.0 MMP/2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-LX350 AU-MIC-LX350/2.0 MMP/2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-LX550 AU-MIC-LX550/2.0 MMP/2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-M4410 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-M6100 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-MG100a MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-MG105 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-MG300D MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-MG800 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-P7200 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+[LG-S5200 MIC/WAP2.0*]
+Parent="Teleca-Obigo"
+
+[LG-U8290 MIC/WAP2.0 *]
+Parent="Teleca-Obigo"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Nokia Browser 8.2
+
+[Nokia Browser 8.2]
+Parent="DefaultProperties"
+Comment="Nokia Browser 8.2"
+Browser="Nokia Browser"
+Version="8.2"
+MajorVer=8
+MinorVer=2
+Platform="SymbianOS"
+JavaScript="true"
+isMobileDevice="true"
+
+[Mozilla/5.0 (Symbian/*; Series60/* Nokia700/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.2*Safari/*]
+Parent="Nokia Browser 8.2"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaE7-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.2*Safari/*]
+Parent="Nokia Browser 8.2"
+
+[Mozilla/5.0 (Symbian/*; Series60/* NokiaN8-00/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.2*Safari/*]
+Parent="Nokia Browser 8.2"
+
+[Mozilla/5.0 (Symbian/*; Series60/* Nokia603/* AppleWebKit/* (KHTML,*like Gecko*) NokiaBrowser/8.2*Safari/*]
+Parent="Nokia Browser 8.2"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.4
+
+[Android Browser 4.4]
+Parent="DefaultProperties"
+Comment="Android Browser 4.4"
+Browser="Android"
+Version="4.4"
+MajorVer=4
+MinorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[IVO/1.0 Android/4.4* Release/* Browser/AppleWebKit*]
+Parent="Android Browser 4.4"
+Platform_Version="4.4"
+
+[Mozilla/5.0(*Linux*Android?4.4*Lenovo A536 Build/*)AppleWebKit/* (KHTML, like Gecko) Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.4*Safari*]
+Parent="Android Browser 4.4"
+Platform_Version="4.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.3
+
+[Android Browser 4.3]
+Parent="DefaultProperties"
+Comment="Android Browser 4.3"
+Browser="Android"
+Version="4.3"
+MajorVer=4
+MinorVer=3
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.3*Safari*]
+Parent="Android Browser 4.3"
+Platform_Version="4.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.2
+
+[Android Browser 4.2]
+Parent="DefaultProperties"
+Comment="Android Browser 4.2"
+Browser="Android"
+Version="4.2"
+MajorVer=4
+MinorVer=2
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.4"
+isTablet="true"
+
+[*Mozilla/5.0 (*GT-I9100* Build/GINGERBREAD*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab 4 Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B6000-F*) AppleWebKit* (KHTML,*like Gecko*) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?1.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mastone_G9_TD/* Release/* Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Lenovo-A880* Linux/* Android/4.2* Release/* Browser/AppleWebkit*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Lenovo-A889* Linux/* Android/4.2* Release/* Browser/AppleWebkit*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[NGM Dynamic Racing 2/* Linux/* Android/4.2* Release/* Browser/AppleWebKit* Mobile Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.4"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.0"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.1"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.5"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="1.6"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.0"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.1"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.2"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.0"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.1"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="3.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.0"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.1"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.3"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.2*Safari*]
+Parent="Android Browser 4.2"
+Platform_Version="4.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.1
+
+[Android Browser 4.1]
+Parent="DefaultProperties"
+Comment="Android Browser 4.1"
+Browser="Android"
+Version="4.1"
+MajorVer=4
+MinorVer=1
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*HTC_One_X Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.4"
+isTablet="true"
+
+[*Mozilla/5.0 (*GT-I9100* Build/GINGERBREAD*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*LG-D802* Build/*) AppleWebKit* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Lenovo B8000-F*) AppleWebKit* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Lenovo-A388t_TD/S100 *Linux*Android?4.1* Release/* Browser/AppleWebkit* Mobile Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?1.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mastone_G9_TD/* Release/* Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-A71 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-710 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 5020D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Vodafone 975N Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6030D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*B1-711 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*B1-711 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 6010D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[HTC7088_TD/1.0 Android/4.1 release/2013 Browser/WAP2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[HTC802t_TD/1.0 Android/4.1 release/2013 Browser/WAP2.0 Profile/MIDP-2.0 Configuration/CLDC-1.1*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.0"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.1"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.5"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.6"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.0"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.1"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.2"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.0"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.1"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.3"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/* (KHTML, like Gecko) Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?1.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.1*Safari*]
+Parent="Android Browser 4.1"
+Platform_Version="4.4"
+
+;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Android Browser 4.0
+
+[Android Browser 4.0]
+Parent="DefaultProperties"
+Comment="Android Browser 4.0"
+Browser="Android"
+Version="4.0"
+MajorVer=4
+Platform="Android"
+Frames="true"
+IFrames="true"
+Tables="true"
+Cookies="true"
+JavaScript="true"
+isMobileDevice="true"
+CssVersion=3
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A27 Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A35 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Build/*)*AppleWebKit*(*KHTML,*like Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Micromax A40 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ALCATEL ONE TOUCH 4030D Build/*)*AppleWebKit/*(*KHTML,*LIKE Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*)*AppleWebKit/*(*khtml,*LIKE Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-D805 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.2*FP1 Build/*)*AppleWebKit/*(*KHTML,*like Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.5"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.6"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*INM8002KP Build/*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[*Mozilla/5.0 (*GT-I9100* Build/GINGERBREAD*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (*Linux*Android?1.0*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.0"
+
+[*Mozilla/5.0 (*Linux*Android?1.1*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.1"
+
+[*Mozilla/5.0 (*Linux*Android?1.5*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.5"
+
+[*Mozilla/5.0 (*Linux*Android?1.6*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.6"
+
+[*Mozilla/5.0 (*Linux*Android?2.0*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.0"
+
+[*Mozilla/5.0 (*Linux*Android?2.1*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[*Mozilla/5.0 (*Linux*Android?2.2*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[*Mozilla/5.0 (*Linux*Android?2.3*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (* Build/GINGERBREAD*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[*Mozilla/5.0 (*Linux*Android?3.0*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.0"
+
+[*Mozilla/5.0 (*Linux*Android?3.1*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.1"
+
+[*Mozilla/5.0 (*Linux*Android?3.2*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.0*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[*Mozilla/5.0 (*Linux*Android?4.1*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[*Mozilla/5.0 (*Linux*Android?4.2*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[*Mozilla/5.0 (*Linux*Android?4.3*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[*Mozilla/5.0 (*Linux*Android?4.4*) AppleWebKit/*KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?1.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?1.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.1"
+
+[Mozilla/5.0 (*Linux*Android?1.5* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.5"
+
+[Mozilla/5.0 (*Linux*Android?1.6* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.6"
+
+[Mozilla/5.0 (*Linux*Android?2.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (* Build/GINGERBREAD* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?3.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.1"
+
+[Mozilla/5.0 (*Linux*Android?3.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.2"
+
+[Mozilla/5.0 (*Linux*Android?4.0* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*sprd-B51+* Android/* Release/* Browser/AppleWebKit* Build/*) AppleWebKit* (KHTML, like Gecko) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mastone_G9_TD/* Release/* Mozilla/5.0 (*Linux*Android?2.3*)*AppleWebKit/*(*KHTML, like Gecko*)*Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[MT6515M* *Linux*Android?2.3* Release/* Browser/AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[* *Linux*Android?2.3* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[* *Linux*Android?4.0* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[* *Linux*Android?4.1* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[* *Linux*Android?4.2* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[* *Linux*Android?4.3* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[* *Linux*Android?4.4* Release* Browser?AppleWebKit* (KHTML, like Gecko) Mozilla/5.0 Mobile]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/DesireHD/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/DesireS/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/Sensation/*) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC/WildfireS/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_DesireHD_A9191; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.1*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P510e; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?3.2*;HTC_Flyer_P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0 Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.2"
+isTablet="true"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Flyer_P512; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+isTablet="true"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_IncredibleS_S710e; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Runnymede; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0 Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_SensationXL_Beats_X315e; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0 Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Macintosh; *Mac OS X*; HTC_Sensation_Z710e; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.0*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.2 (Macintosh; *Mac OS X*; HTC_EVO3D_X515m; *) AppleWebKit/* (KHTML,*like Gecko*) Version/5.2*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (Linux*; Android Eclair*Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/*Safari*]
+Parent="Android Browser 4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P6800 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*KFTT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*1000ET Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*2808A+ Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A* Build/*)AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*A101IT Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A28 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A43 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A6277 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*A70S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADM901 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6200 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ADR6300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AIRIS Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*AOSP on XDANDROID MSM Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ally Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Android for Telechips TCC890* Build/*)*AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE lutea Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DFP7002 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*DROIDX Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Dell Streak Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Desire_A8181 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Droid Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*E10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Eris Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5500 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5503 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5700 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5800 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I5801 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LG-GT540 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Garmin-Asus A50 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire Build*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Hero* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (Linux*; Android VillainROM*; HTC Hero Build/ERE27) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="1.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Legend* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Magic Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Wildfire S* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Wildfire* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC-A6366* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_A3335* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Aria_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Desire-orange-LS Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Wildfire_A3333 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*IS03 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Ideos S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LU2300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*LogicPD Zoom2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M82VG Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*M860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB508 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoMB525 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB632 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MID Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.0*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.0"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Milestone Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Milestone XT720 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*MotoMB511 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?3.0*Nexus One Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="3.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusOne Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*OP070 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*OYO *) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Orange_Boston Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*POV Mobii 7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Pulse Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*RBM3 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*S7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I896 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SAMSUNG-SGH-I897* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-I500 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SCH-R880 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SGH-T959 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SHW-M110S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-D700 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M900 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SPH-M910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*San Francisco Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SmartQ V7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE10a Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonE15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonSO-01B Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonU20iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonX10iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Stream Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_Espresso Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*T-Mobile_G2_Touch Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_AC_AND_AZ) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;TOSHIBA_AC_AND_AZ) AppleWebKit/*(KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TOSHIBA_FOLIO_AND_A Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*TSB_CLOUD_COMPANION;FOLIO_AND_A) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*folio100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U20i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8180 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8220 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*U8500 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*USCCADR6275US Carrier ID 45 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*Vodafone 845 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*WX445 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X10i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XST2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT610 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT615 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.1*XT701 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ZTE-BLADE Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZTE-RACER Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*ZiiO7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*jv02 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*liquid Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*p7901a Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.1*sdk Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.1*v9 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL one touch 890D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_990 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*DISCO10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Desire HD Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD_A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD A9191 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E140 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*E310 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I5510 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9003 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-I9010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-P1000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-P1010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570I Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5570* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5660 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5670 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830C Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-S5830* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0 *]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0 *]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0 *]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Incredible S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Vision Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Desire Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*HTC_Gratia_A6380 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Ideos Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E720*; Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E730*; Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P350* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P500* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P720* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P920* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P925* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P940* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P970* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LG-P990* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Liquid Metal Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoA953 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*MotoroiX Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NBPC724 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isMobileDevice="false"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ODYS Space Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ODYS Xtreme Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*SMARTBOOK* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewPad7 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-ViewPad7e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*Vodafone 858 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*XT320 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.2*imx51_bbg Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*meizu_m9 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (*Linux*Android?2.2*NGM Miracle Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Mozilla/5.0 (Linux*; Android RCMix_v2.2_WWE*; HTC_HERO Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.2"
+
+[Lenovo-A288t* *Linux*Android?2.3* Release/* Browser/AppleWebkit*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[MALATA I50* *Linux*Android?2.3* Release/* Browser/AppleWebkit*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Lenovo-A820* *Linux*Android?4.1* Release/* Browser/AppleWebkit*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9100 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (Linux*; GT-I9100 Build/GINGERBREAD) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*A1_07 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 903D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 918D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 991T Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL ONE TOUCH 997D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_918D Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ALCATEL_one_touch_995 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*AN7CG2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Acer E320 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Lutea 2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*BASE Tab 7.1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CAT NOVA Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet Galactica X* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Cat Tablet* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*CatNova8 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Kinder-Tablet-1.0-Weltbild-Mozilla/5.0 (*Linux*Android?4.2*EOS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*FX2-PAD10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8150 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8160P Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190N Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I8190* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I8530 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9001* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9070P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9103 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-I9105P* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7000* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N7100* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.4*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.4"
+isTablet="true"
+
+[Cakemix/* Mozilla/5.0 (*Linux*Android?4.1*GT-N8000 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/?.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.2*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.3*GT-N8010 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5300B Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5360 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5363 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5369* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5690* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S5839i* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6102B Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6500* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S6802 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-S7500* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Desire HD * Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Flyer P510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC HD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XE with Beats Audio Z715e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation XL with Beats Audio X315e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC Sensation Z710e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Explorer* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC/Sensation/* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/Velocity 4G* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC/WildfireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_ChaCha_A810e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireHD Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC?DesireS_S510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?DesireS* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[HTC_DesireS_S510e?Mozilla/5.0(*Linux*Android?2.3*Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_DesireZ_A7272 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Explorer_A310e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Rhyme_S510b Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HTC_Sensation Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC_WildfireS_A510e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HTC?Desire* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI SONIC Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8650* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8666E Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*HUAWEI U8950N-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*INM803HC Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*IncredibleS_S710e Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E400* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-E510* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LG-P690* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonLT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*LT22i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*LT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyLT26i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MotoMB526 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MEDION LIFE P4310 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MEDION Smartphone LIFE E3501 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1125 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID1126 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID7022 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MID8127 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MID_Serials Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*MOT-XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*XT910 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*MT791 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*Nexus S Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*NexusHD2 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Odys-Loox Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*PMP5080B Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.1*POV_TAB-PROTAB30-IPS10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*R800i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonR800iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9070* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*GT-I9210* Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SH80F Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonSK17iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SPX-5_3G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST18iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*LT15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonLT15iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.0*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*MK16i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonMT11i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonMT15a Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST15i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST17i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST25i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*SonyEricssonST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?4.1*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.1"
+
+[Mozilla/5.0 (*Linux*Android?4.2*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+
+[Mozilla/5.0 (*Linux*Android?4.3*ST27i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*SonyEricssonWT19i Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*SonyEricssonWT19iv Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8510 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8600 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8655-1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.0*U8860 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+
+[Mozilla/5.0 (*Linux*Android?2.3*ViewSonic-V350 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*Vodafone Smart II Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?4.2*Vodafone Smart Tab III 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.2"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?4.0*Vodafone SmartTab II 10 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="4.0"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*X7G Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+isTablet="true"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-G70 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*Safari*]
+Parent="Android Browser 4.0"
+Platform_Version="2.3"
+
+[Mozilla/5.0 (*Linux*Android?2.3*YP-GI1 Build/*) AppleWebKit/* (KHTML,*like Gecko*) Version/4.0*S